# HG changeset patch # User neko259 # Date 2013-10-27 21:15:20 # Node ID 6ba66981ab39bb3957baa3f146b7f92549b06aee # Parent cc4b1aecf06e7c3b0a992b56cf7ab2e3290d36bf Show reply map above metadata in thread list 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 %}