merge-requests/30/head
Bob Mottram 2025-01-25 16:29:13 +00:00
parent b991a02fd6
commit cf0120000d
1 changed files with 9 additions and 7 deletions

View File

@ -1005,19 +1005,21 @@ def html_new_post(edit_post_params: {},
searchable_by_dropdown += \ searchable_by_dropdown += \
' <option value="' + srch + '" selected="">' + \ ' <option value="' + srch + '" selected="">' + \
srch_text + '</option>\n' srch_text + '</option>\n'
replies_section += \ replies_section += '<br>\n' + \
' <label class="labels">🔎 ' + \ ' <label class="labels">🔎 ' + \
translate['Searchable by'] + '</label>\n' translate['Searchable by'] + '</label>\n'
replies_section += \ replies_section += \
searchable_by_dropdown + '</select>\n<br>\n' searchable_by_dropdown + '</select>\n'
# buy link # buy link
buy_link_str = translate['Buy link'] buy_link_str = translate['Buy link']
replies_section += edit_text_field(buy_link_str, 'buyUrl', replies_section += \
default_buy_site, 'https://...') '<br>\n' + edit_text_field(buy_link_str, 'buyUrl',
chat_link_str = '<br>💬 ' + translate['Chat link'] default_buy_site, 'https://...')
replies_section += edit_text_field(chat_link_str, 'chatUrl', chat_link_str = '💬 ' + translate['Chat link']
'', 'https://...') replies_section += \
'<br>\n' + edit_text_field(chat_link_str, 'chatUrl',
'', 'https://...')
replies_section += '</div>\n' replies_section += '</div>\n'
date_and_location = \ date_and_location = \