# HG changeset patch # User neko259 # Date 2013-11-08 20:27:17 # Node ID d13529769b392502dc4b705d928664620309d44a # Parent b64c76b56b7378bb3fa78b459ca368720740e99d Separated replies links with comma 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 @@ -78,7 +78,8 @@
{% trans "Replies" %}: {% for ref_post in thread.thread.referenced_posts.all %} - >>{{ ref_post.id }} + >>{{ ref_post.id }}{% if not forloop.last %},{% endif %} {% endfor %}
{% endif %} @@ -133,7 +134,8 @@
{% trans "Replies" %}: {% for ref_post in post.referenced_posts.all %} - >>{{ ref_post.id }} + >>{{ ref_post.id }}{% if not forloop.last %},{% endif %} {% endfor %}
{% endif %} diff --git a/boards/templates/boards/thread.html b/boards/templates/boards/thread.html --- a/boards/templates/boards/thread.html +++ b/boards/templates/boards/thread.html @@ -71,7 +71,8 @@
{% trans "Replies" %}: {% for ref_post in post.referenced_posts.all %} - >>{{ ref_post.id }} + >>{{ ref_post.id }}{% if not forloop.last %},{% endif %} {% endfor %}
{% endif %}