diff --git a/webapp_create_post.py b/webapp_create_post.py index 4f45bb5b0..2d327bc3e 100644 --- a/webapp_create_post.py +++ b/webapp_create_post.py @@ -612,23 +612,27 @@ def html_new_post(css_cache: {}, media_instance: bool, translate: {}, citations_str += ' \n' citations_str += '\n' + replies_section = '' date_and_location = '' if endpoint not in ('newshare', 'newwanted', 'newreport', 'newquestion'): if not is_new_reminder: - date_and_location = \ + replies_section = \ '
\n' if category != 'accommodation': - date_and_location += \ + replies_section += \ '

\n' else: - date_and_location += \ + replies_section += \ '\n' + replies_section += '
\n' + date_and_location = \ + '
\n' if endpoint == 'newpost': date_and_location += \ '

\n' date_and_location += date_and_time_str - date_and_location += '
\n' - date_and_location += '
\n' date_and_location += \ edit_text_field(translate['Location'], 'location', '') date_and_location += '
\n' @@ -854,7 +856,8 @@ def html_new_post(css_cache: {}, media_instance: bool, translate: {}, str(message_box_height) + 'px"' + selected_str + \ ' spellcheck="true" autocomplete="on">' + \ '\n' - new_post_form += extra_fields + citations_str + date_and_location + new_post_form += \ + extra_fields + citations_str + replies_section + date_and_location if not media_instance or reply_str: new_post_form += new_post_image_section