jules.lambert1 commited on
Commit
75f79e5
1 Parent(s): de12390

change app

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -151,6 +151,20 @@ display_dataframe(
151
  verified_df, drop_cols, VERIFIED_REQUESTS_URL, search_id=True, for_help_requests=True, show_link=False
152
  )
153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
  # Requests table
155
  st.divider()
156
  st.subheader("📝 **Table of requests / جدول الطلبات**")
 
151
  verified_df, drop_cols, VERIFIED_REQUESTS_URL, search_id=True, for_help_requests=True, show_link=False
152
  )
153
 
154
+ # Requests table aggregate
155
+ st.subheader("📝 **Table of aggragate")
156
+ aggregate = aggregate_locations(verified_df)
157
+ display_dataframe(
158
+ aggregate, [], VERIFIED_REQUESTS_URL, search_id=True, for_help_requests=True, show_link=False
159
+ )
160
+
161
+ # Requests table aggregate
162
+ st.subheader("📝 **Table of shelter request")
163
+ house_request = verified_df[verified_df['Help Details'] == HelpCategory.HOUSE]
164
+ display_dataframe(
165
+ house_request, drop_cols, VERIFIED_REQUESTS_URL, search_id=True, for_help_requests=True, show_link=False
166
+ )
167
+
168
  # Requests table
169
  st.divider()
170
  st.subheader("📝 **Table of requests / جدول الطلبات**")