Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
•
3b1c44f
1
Parent(s):
5bcdf44
add donations info
Browse files
app.py
CHANGED
@@ -288,6 +288,61 @@ st.divider()
|
|
288 |
id_review_submission()
|
289 |
|
290 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
# Credits
|
292 |
st.markdown(
|
293 |
CREDITS_TEXT,
|
|
|
288 |
id_review_submission()
|
289 |
|
290 |
|
291 |
+
# Donations can be made to the gouvernmental fund under the name
|
292 |
+
st.divider()
|
293 |
+
st.subheader("📝 **Donations / التبرعات / Dons**")
|
294 |
+
tab_ar, tab_en, tab_fr = st.tabs(["العربية", "English", "Français"])
|
295 |
+
with tab_en:
|
296 |
+
st.markdown(
|
297 |
+
"""
|
298 |
+
<div style="text-align: center;">
|
299 |
+
<h4>The official bank account dedicated to tackle the consequences of the earthquake is:</h4>
|
300 |
+
<b>Account number:</b>
|
301 |
+
<h2>126</h2>
|
302 |
+
<b>RIB:</b> 001-810-0078000201106203-18
|
303 |
+
<br>
|
304 |
+
<b>For the money transfers coming from outside Morocco</b>
|
305 |
+
<br>
|
306 |
+
<b>IBAN:</b> MA64001810007800020110620318
|
307 |
+
<br>
|
308 |
+
""",
|
309 |
+
unsafe_allow_html=True,
|
310 |
+
)
|
311 |
+
with tab_ar:
|
312 |
+
st.markdown(
|
313 |
+
"""
|
314 |
+
<div style="text-align: center;">
|
315 |
+
<h4>الحساب البنكي الرسمي المخصص لمواجهة عواقب الزلزال</h4>
|
316 |
+
<b>رقم الحساب</b>
|
317 |
+
<h2>126</h2>
|
318 |
+
<b>RIB:</b> 001-810-0078000201106203-18
|
319 |
+
<br>
|
320 |
+
<b>للتحويلات القادمة من خارج المغرب</b>
|
321 |
+
<br>
|
322 |
+
<b>IBAN:</b> MA64001810007800020110620318
|
323 |
+
<br>
|
324 |
+
</div>
|
325 |
+
""",
|
326 |
+
unsafe_allow_html=True,
|
327 |
+
)
|
328 |
+
with tab_fr:
|
329 |
+
st.markdown(
|
330 |
+
"""
|
331 |
+
<div style="text-align: center;">
|
332 |
+
<h4>Le compte bancaire officiel dédié à la lutte contre les conséquences du séisme est le suivant:</h4>
|
333 |
+
<b>Numéro de compte:</b>
|
334 |
+
<h2>126</h2>
|
335 |
+
<b>RIB:</b> 001-810-0078000201106203-18
|
336 |
+
<br>
|
337 |
+
<b>Pour les transferts d'argent en provenance de l'étranger</b>
|
338 |
+
<br>
|
339 |
+
<b>IBAN:</b> MA64001810007800020110620318
|
340 |
+
<br>
|
341 |
+
""",
|
342 |
+
unsafe_allow_html=True,
|
343 |
+
)
|
344 |
+
|
345 |
+
|
346 |
# Credits
|
347 |
st.markdown(
|
348 |
CREDITS_TEXT,
|