Jan Mühlnikel commited on
Commit
aa3820f
1 Parent(s): b68d705

added some filter descriptions

Browse files
Files changed (1) hide show
  1. similarity_page.py +7 -6
similarity_page.py CHANGED
@@ -141,7 +141,7 @@ def show_multi_matching_page():
141
  st.session_state.crs5_option_disabled = True
142
  col1, col2, col3 = st.columns([5, 1, 5])
143
  with col1:
144
- st.write("Sector Filter (required)")
145
  st.caption("""
146
  Sector filters must be applied to see results. The CRS5 and CRS3 classifications organise development aid into categories,
147
  with the 5-digit level providing more specific detail within the broader 3-digit categories.
@@ -184,18 +184,19 @@ def show_multi_matching_page():
184
  query = st.text_input("Search Query")
185
 
186
  with col3:
187
- st.write("Additional Filters")
188
  st.caption("""
189
  The additional filters allow for a more detailed search for the Multi-Project Matching.
190
-
191
-
192
  """)
 
 
 
193
 
194
  # COUNTRY SELECTION
195
  country_option = st.multiselect(
196
  'Country / Countries',
197
  COUNTRY_OPTION_LIST,
198
- placeholder="All"
199
  )
200
 
201
  # ORGA SELECTION
@@ -206,7 +207,7 @@ def show_multi_matching_page():
206
  orga_option = st.multiselect(
207
  'Development Bank / Organization',
208
  orga_list,
209
- placeholder="All"
210
  )
211
 
212
  different_orga_checkbox = st.checkbox("Only matches between different organizations")
 
141
  st.session_state.crs5_option_disabled = True
142
  col1, col2, col3 = st.columns([5, 1, 5])
143
  with col1:
144
+ st.subheader("Sector Filter (required)")
145
  st.caption("""
146
  Sector filters must be applied to see results. The CRS5 and CRS3 classifications organise development aid into categories,
147
  with the 5-digit level providing more specific detail within the broader 3-digit categories.
 
184
  query = st.text_input("Search Query")
185
 
186
  with col3:
187
+ st.subheader("Additional Filters")
188
  st.caption("""
189
  The additional filters allow for a more detailed search for the Multi-Project Matching.
 
 
190
  """)
191
+
192
+ st.caption(" ")
193
+ st.caption(" ")
194
 
195
  # COUNTRY SELECTION
196
  country_option = st.multiselect(
197
  'Country / Countries',
198
  COUNTRY_OPTION_LIST,
199
+ placeholder="All countries selected"
200
  )
201
 
202
  # ORGA SELECTION
 
207
  orga_option = st.multiselect(
208
  'Development Bank / Organization',
209
  orga_list,
210
+ placeholder="All organizations selected"
211
  )
212
 
213
  different_orga_checkbox = st.checkbox("Only matches between different organizations")