End select

merge-requests/30/head
Bob Mottram 2025-01-25 16:18:32 +00:00
parent 702cea4821
commit 3e455fb5fc
1 changed files with 4 additions and 4 deletions

View File

@ -993,22 +993,22 @@ def html_new_post(edit_post_params: {},
'mutuals': translate['Mutuals'] 'mutuals': translate['Mutuals']
} }
searchable_by_dropdown = '<select id="themeDropdown" ' + \ searchable_by_dropdown = '<select id="themeDropdown" ' + \
'name="searchableByDropdown" class="theme">' 'name="searchableByDropdown" class="theme">\n'
if not searchable_by_default: if not searchable_by_default:
searchable_by_default = 'yourself' searchable_by_default = 'yourself'
for srch, srch_text in searchables.items(): for srch, srch_text in searchables.items():
if srch != searchable_by_default: if srch != searchable_by_default:
searchable_by_dropdown += \ searchable_by_dropdown += \
' <option value="' + srch + '">' + \ ' <option value="' + srch + '">' + \
srch_text + '</option>' srch_text + '</option>\n'
else: else:
searchable_by_dropdown += \ searchable_by_dropdown += \
' <option value="' + srch + '" selected="">' + \ ' <option value="' + srch + '" selected="">' + \
srch_text + '</option>' srch_text + '</option>\n'
replies_section += \ replies_section += \
' <label class="labels">🔎 ' + \ ' <label class="labels">🔎 ' + \
translate['Searchable by'] + '</label>\n' translate['Searchable by'] + '</label>\n'
replies_section += searchable_by_dropdown replies_section += searchable_by_dropdown + '</select>\n'
# buy link # buy link
buy_link_str = translate['Buy link'] buy_link_str = translate['Buy link']