File size: 840 Bytes
d0661bd c4b812c d63f1d2 9157013 9ee810a fc09623 0527fa6 fc09623 9157013 fc09623 9157013 9bb081d 0527fa6 10118ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import streamlit as st
from organisations_engagees import display_organisations_engagees
from localisation import display_map
from statistiques import main as display_statistics
# Main function orchestrating the app UI
def main():
st.sidebar.title("Navigation")
app_mode = st.sidebar.radio("Choisissez l'onglet", ["Organisations engagées", "Localisations", "Statistiques"])
if app_mode == "Organisations engagées":
display_organisations_engagees()
elif app_mode == "Localisations":
display_map()
elif app_mode == "Statistiques":
display_statistics()
# Après toutes les autres instructions dans votre barre latérale :
st.sidebar.markdown("---") # Ajoute une ligne de séparation visuelle
st.sidebar.markdown("Powered by **bziiit IA RSE**")
if __name__ == "__main__":
main()
|