Spaces:
Sleeping
Sleeping
Merge branch 'main' of https://huggingface.co/spaces/DeepFundingAgriAI/Field-Monitoring
Browse files- app.py +1 -0
- pag/edit.py +2 -1
app.py
CHANGED
@@ -27,6 +27,7 @@ def authenticate_user():
|
|
27 |
authentication.login()
|
28 |
elif choice == "Contact Us":
|
29 |
contact_form.main()
|
|
|
30 |
|
31 |
|
32 |
|
|
|
27 |
authentication.login()
|
28 |
elif choice == "Contact Us":
|
29 |
contact_form.main()
|
30 |
+
st.info("For testing purposes, you can use the following credentials: \n\n Username: asim \n\n Password: qwerty616")
|
31 |
|
32 |
|
33 |
|
pag/edit.py
CHANGED
@@ -73,7 +73,8 @@ def edit_fields(current_user):
|
|
73 |
folium.LayerControl().add_to(fields_map)
|
74 |
folium_static(fields_map, height=300, width=400)
|
75 |
st.subheader(f":green[{field_name}]")
|
76 |
-
option_menu = st.radio(f"Please add your {field_name} field information, historical data will help train our AI model", options=["View Field Info", "Add Field Information","Add Field Cultivation History", "Delete"], key="option_menu", help="Select the operation to perform")
|
|
|
77 |
if option_menu == "View Field Info":
|
78 |
field = gdf[gdf['name'] == field_name]
|
79 |
st.write(field)
|
|
|
73 |
folium.LayerControl().add_to(fields_map)
|
74 |
folium_static(fields_map, height=300, width=400)
|
75 |
st.subheader(f":green[{field_name}]")
|
76 |
+
# option_menu = st.radio(f"Please add your {field_name} field information, historical data will help train our AI model", options=["View Field Info", "Add Field Information","Add Field Cultivation History", "Delete"], key="option_menu", help="Select the operation to perform")
|
77 |
+
option_menu = st.radio(f"Please add your {field_name} field information, historical data will help refine our AI model recommendations", options=["View Field Info","Add Field Cultivation History", "Delete"], key="option_menu", help="Select the operation to perform")
|
78 |
if option_menu == "View Field Info":
|
79 |
field = gdf[gdf['name'] == field_name]
|
80 |
st.write(field)
|