LaurentTRIPIED commited on
Commit
f533b43
1 Parent(s): 9432dda
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -80,7 +80,7 @@ def classify_rse_actions(descriptions):
80
  # Nouvelle fonction pour l'onglet de classification RSE
81
  def display_rse_categorizer():
82
  st.header("Classification des Actions RSE")
83
- st.write("Cet outil classe les actions RSE des entreprises selon les normes ISO 26000.")
84
 
85
  data, _ = get_data()
86
  if data:
@@ -93,14 +93,14 @@ def display_rse_categorizer():
93
 
94
  # Main function orchestrating the app UI
95
  def main():
96
- st.sidebar.title("Navigation")
97
- app_mode = st.sidebar.radio("Choisissez l'onglet", ["Organisations engagées", "GeoRSE Insights", "Classification RSE"])
98
 
99
  if app_mode == "Organisations engagées":
100
  display_organisations_engagees()
101
- elif app_mode == "GeoRSE Insights":
102
  display_geo_rse_insights()
103
- elif app_mode == "Classification RSE":
104
  display_rse_categorizer()
105
 
106
  if __name__ == "__main__":
 
80
  # Nouvelle fonction pour l'onglet de classification RSE
81
  def display_rse_categorizer():
82
  st.header("Classification des Actions RSE")
83
+ st.write("Cet outil classe les actions RSE des entreprises selon les critères de la norme ISO 26000.")
84
 
85
  data, _ = get_data()
86
  if data:
 
93
 
94
  # Main function orchestrating the app UI
95
  def main():
96
+ st.sidebar.title("Découvrir")
97
+ app_mode = st.sidebar.radio("Choisissez l'onglet", ["Organisations engagées", "Localisation", "Type d'actions RSE"])
98
 
99
  if app_mode == "Organisations engagées":
100
  display_organisations_engagees()
101
+ elif app_mode == "Localisation":
102
  display_geo_rse_insights()
103
+ elif app_mode == "Type d'actions RSE":
104
  display_rse_categorizer()
105
 
106
  if __name__ == "__main__":