Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -39,23 +39,24 @@ def main():
|
|
| 39 |
# search_options = [""] + options
|
| 40 |
selected_option = display_list_and_input()
|
| 41 |
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
#
|
| 57 |
-
#
|
| 58 |
-
|
|
|
|
| 59 |
|
| 60 |
if st.button("Submit"):
|
| 61 |
if selected_option == "":
|
|
|
|
| 39 |
# search_options = [""] + options
|
| 40 |
selected_option = display_list_and_input()
|
| 41 |
|
| 42 |
+
|
| 43 |
+
#### extra parameters
|
| 44 |
+
# # Checkbox
|
| 45 |
+
# col_1_1, col_1_2 = st.columns([1, 4])
|
| 46 |
+
# with col_1_1:
|
| 47 |
+
# option1 = st.checkbox("Functionality problems", value=False)
|
| 48 |
+
# with col_1_2:
|
| 49 |
+
# if option1:
|
| 50 |
+
# option1_text_input_value = st.text_input("Functionality problems description")
|
| 51 |
+
# col_2_1, col_2_2 = st.columns([1, 4])
|
| 52 |
+
# with col_2_1:
|
| 53 |
+
# option2 = st.checkbox("Special tax area", value=False)
|
| 54 |
+
# with col_2_2:
|
| 55 |
+
# if option2:
|
| 56 |
+
# option1_text_input_value = st.text_input("Special tax area description")
|
| 57 |
+
# # option2 = st.checkbox("Special tax area", value=False)
|
| 58 |
+
# # special parameters free text
|
| 59 |
+
# user_input = st.text_input("Enter special parameters of the building:")
|
| 60 |
|
| 61 |
if st.button("Submit"):
|
| 62 |
if selected_option == "":
|