Spaces:
Runtime error
Runtime error
add emojis and fix spacing
Browse files
app.py
CHANGED
|
@@ -31,9 +31,9 @@ st.markdown(
|
|
| 31 |
st.title("Nt3awnou نتعاونو ")
|
| 32 |
|
| 33 |
st.markdown("""
|
| 34 |
-
Help us report more people in need by filling this form: https://forms.gle/nZNCUVog9ka2Vdqu6 : ساعدونا نبلغو الناس ليمحتاجين فهاد الاستمارة
|
| 35 |
-
|
| 36 |
-
[email protected] المتطوعين ليبغاو يعاونوا يقدرو يتصلوا معنا عبر البريد
|
| 37 |
""")
|
| 38 |
|
| 39 |
|
|
@@ -75,11 +75,11 @@ options = ["إغاثة", "مساعدة طبية", "مأوى", "طعام وماء
|
|
| 75 |
selected_options = []
|
| 76 |
|
| 77 |
st.markdown("👉 **Choose request type / اختر نوع الطلب**")
|
| 78 |
-
|
|
|
|
| 79 |
|
| 80 |
for i, option in enumerate(options):
|
| 81 |
checked = cols[i].checkbox(headers_mapping[option], value=True)
|
| 82 |
-
|
| 83 |
if checked:
|
| 84 |
selected_options.append(headers_mapping[option])
|
| 85 |
|
|
|
|
| 31 |
st.title("Nt3awnou نتعاونو ")
|
| 32 |
|
| 33 |
st.markdown("""
|
| 34 |
+
📝 Help us report more people in need by filling this form: https://forms.gle/nZNCUVog9ka2Vdqu6 : ساعدونا نبلغو الناس ليمحتاجين فهاد الاستمارة
|
| 35 |
+
|
| 36 |
+
✉️ [email protected] المتطوعين ليبغاو يعاونوا يقدرو يتصلوا معنا عبر البريد
|
| 37 |
""")
|
| 38 |
|
| 39 |
|
|
|
|
| 75 |
selected_options = []
|
| 76 |
|
| 77 |
st.markdown("👉 **Choose request type / اختر نوع الطلب**")
|
| 78 |
+
col1, col2, col3, col4, col5 = st.columns([2, 3, 2, 3, 4])
|
| 79 |
+
cols = [col1, col2, col3, col4, col5]
|
| 80 |
|
| 81 |
for i, option in enumerate(options):
|
| 82 |
checked = cols[i].checkbox(headers_mapping[option], value=True)
|
|
|
|
| 83 |
if checked:
|
| 84 |
selected_options.append(headers_mapping[option])
|
| 85 |
|