nouamanetazi HF staff commited on
Commit
6dcd218
1 Parent(s): e5a285a

drop some cols

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -282,7 +282,7 @@ with col2:
282
  "Display Interventions | Afficher les interventions | عرض عمليات المساعدة",
283
  value=True,
284
  )
285
-
286
  st.markdown(
287
  "👉 **Choose request type | Choissisez le type de demande | اختر نوع الطلب**"
288
  )
@@ -469,7 +469,12 @@ st.subheader("📝 **Table of verified requests / جدول الطلبات الم
469
  drop_cols = [
470
  "Phone Number",
471
  "id",
472
- "VerificationStatus"
 
 
 
 
 
473
  ]
474
  display_dataframe(verified_df, drop_cols, VERIFIED_REQUESTS_URL, search_id=True, for_help_requests=True)
475
 
@@ -484,6 +489,7 @@ drop_cols = [
484
  "GeoAddress",
485
  "Status",
486
  "id",
 
487
  ]
488
  display_dataframe(filtered_df, drop_cols, REQUESTS_URL, search_id=True, for_help_requests=True)
489
 
 
282
  "Display Interventions | Afficher les interventions | عرض عمليات المساعدة",
283
  value=True,
284
  )
285
+
286
  st.markdown(
287
  "👉 **Choose request type | Choissisez le type de demande | اختر نوع الطلب**"
288
  )
 
469
  drop_cols = [
470
  "Phone Number",
471
  "id",
472
+ "Status",
473
+ "Intervenant ",
474
+ "Intervention Date",
475
+ "Any remarks",
476
+ "VerificationStatus",
477
+ "Automatic Extracted Coordinates"
478
  ]
479
  display_dataframe(verified_df, drop_cols, VERIFIED_REQUESTS_URL, search_id=True, for_help_requests=True)
480
 
 
489
  "GeoAddress",
490
  "Status",
491
  "id",
492
+ "Automatic Extracted Coordinates",
493
  ]
494
  display_dataframe(filtered_df, drop_cols, REQUESTS_URL, search_id=True, for_help_requests=True)
495