diff --git a/boards/templates/boards/posting_general.html b/boards/templates/boards/posting_general.html --- a/boards/templates/boards/posting_general.html +++ b/boards/templates/boards/posting_general.html @@ -70,6 +70,14 @@ {% autoescape off %} {{ thread.thread.text.rendered|truncatewords_html:50 }} {% endautoescape %} + {% if thread.thread.referenced_posts.all %} +
+ {% trans "Replies" %}: + {% for ref_post in thread.thread.referenced_posts.all %} + >>{{ ref_post.id }} + {% endfor %} +
+ {% endif %}
{{ thread.thread.get_reply_count }} {% trans 'replies' %}, @@ -84,14 +92,6 @@ {% endif %}
- {% if thread.thread.referenced_posts.all %} -
- {% trans "Replies" %}: - {% for ref_post in thread.thread.referenced_posts.all %} - >>{{ ref_post.id }} - {% endfor %} -
- {% endif %} {% if thread.thread.get_last_replies.exists %}