Spaces:
Runtime error
Runtime error
Commit
·
bc4d696
1
Parent(s):
631d5f3
V2-Liste_MAP_Stat_23
Browse files
app.py
CHANGED
|
@@ -3,6 +3,7 @@ from organisations_engagees import display_organisations_engagees
|
|
| 3 |
from localisation import display_map
|
| 4 |
from statistiques import main as display_statistics
|
| 5 |
|
|
|
|
| 6 |
# Main function orchestrating the app UI
|
| 7 |
def main():
|
| 8 |
st.sidebar.title("Open Data RSE Bordeaux Métropole")
|
|
@@ -15,11 +16,13 @@ def main():
|
|
| 15 |
elif app_mode == "Statistiques":
|
| 16 |
display_statistics()
|
| 17 |
|
|
|
|
| 18 |
# Après toutes les autres instructions dans votre barre latérale :
|
| 19 |
st.sidebar.markdown("---") # Ajoute une ligne de séparation visuelle
|
| 20 |
st.sidebar.markdown("Powered by **bziiit IA RSE**")
|
| 21 |
st.sidebar.markdown("---") # Ajoute une ligne de séparation visuelle
|
| 22 |
st.sidebar.markdown("2024 : Open source en Licence MIT")
|
| 23 |
|
|
|
|
| 24 |
if __name__ == "__main__":
|
| 25 |
main()
|
|
|
|
| 3 |
from localisation import display_map
|
| 4 |
from statistiques import main as display_statistics
|
| 5 |
|
| 6 |
+
|
| 7 |
# Main function orchestrating the app UI
|
| 8 |
def main():
|
| 9 |
st.sidebar.title("Open Data RSE Bordeaux Métropole")
|
|
|
|
| 16 |
elif app_mode == "Statistiques":
|
| 17 |
display_statistics()
|
| 18 |
|
| 19 |
+
|
| 20 |
# Après toutes les autres instructions dans votre barre latérale :
|
| 21 |
st.sidebar.markdown("---") # Ajoute une ligne de séparation visuelle
|
| 22 |
st.sidebar.markdown("Powered by **bziiit IA RSE**")
|
| 23 |
st.sidebar.markdown("---") # Ajoute une ligne de séparation visuelle
|
| 24 |
st.sidebar.markdown("2024 : Open source en Licence MIT")
|
| 25 |
|
| 26 |
+
|
| 27 |
if __name__ == "__main__":
|
| 28 |
main()
|