Jan Mühlnikel
commited on
Commit
·
21f2343
1
Parent(s):
94fd083
text instead of codes as crs
Browse files- similarity_page.py +10 -18
similarity_page.py
CHANGED
@@ -297,25 +297,17 @@ def show_single_matching_page():
|
|
297 |
|
298 |
col1, col2, col3, col4 = st.columns([10, 1, 10, 10])
|
299 |
with col1:
|
300 |
-
|
301 |
search_option = st.selectbox(
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
project_option = st.selectbox(
|
314 |
-
label = 'Search for a project',
|
315 |
-
index = None,
|
316 |
-
placeholder = " ",
|
317 |
-
options = search_list,
|
318 |
-
)
|
319 |
|
320 |
with col3:
|
321 |
# ORGA SELECTION
|
|
|
297 |
|
298 |
col1, col2, col3, col4 = st.columns([10, 1, 10, 10])
|
299 |
with col1:
|
|
|
300 |
search_option = st.selectbox(
|
301 |
+
label='Search with project title or IATI ID',
|
302 |
+
index=0,
|
303 |
+
options=["Search with IATI ID", "Search with project title"],
|
304 |
+
)
|
305 |
+
|
306 |
+
if search_option == "Search":
|
307 |
+
search_query = st.text_input("Enter IATI ID", autocomplete=projects_df["iati_id"].to_list())
|
308 |
+
else:
|
309 |
+
search_query = st.text_input("Enter project title", autocomplete=projects_df["title_main"].to_list())
|
310 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
|
312 |
with col3:
|
313 |
# ORGA SELECTION
|