##// END OF EJS Templates
Separated replies links with comma
neko259 -
r342:d1352976 default
parent child Browse files
Show More
@@ -78,7 +78,8 b''
78 <div class="refmap">
78 <div class="refmap">
79 {% trans "Replies" %}:
79 {% trans "Replies" %}:
80 {% for ref_post in thread.thread.referenced_posts.all %}
80 {% for ref_post in thread.thread.referenced_posts.all %}
81 <a href="{% post_url ref_post.id %}">&gt;&gt;{{ ref_post.id }}</a>
81 <a href="{% post_url ref_post.id %}">&gt;&gt;{{ ref_post.id }}</a
82 >{% if not forloop.last %},{% endif %}
82 {% endfor %}
83 {% endfor %}
83 </div>
84 </div>
84 {% endif %}
85 {% endif %}
@@ -133,7 +134,8 b''
133 <div class="refmap">
134 <div class="refmap">
134 {% trans "Replies" %}:
135 {% trans "Replies" %}:
135 {% for ref_post in post.referenced_posts.all %}
136 {% for ref_post in post.referenced_posts.all %}
136 <a href="{% post_url ref_post.id %}">&gt;&gt;{{ ref_post.id }}</a>
137 <a href="{% post_url ref_post.id %}">&gt;&gt;{{ ref_post.id }}</a
138 >{% if not forloop.last %},{% endif %}
137 {% endfor %}
139 {% endfor %}
138 </div>
140 </div>
139 {% endif %}
141 {% endif %}
@@ -71,7 +71,8 b''
71 <div class="refmap">
71 <div class="refmap">
72 {% trans "Replies" %}:
72 {% trans "Replies" %}:
73 {% for ref_post in post.referenced_posts.all %}
73 {% for ref_post in post.referenced_posts.all %}
74 <a href="{% post_url ref_post.id %}">&gt;&gt;{{ ref_post.id }}</a>
74 <a href="{% post_url ref_post.id %}">&gt;&gt;{{ ref_post.id }}</a
75 >{% if not forloop.last %},{% endif %}
75 {% endfor %}
76 {% endfor %}
76 </div>
77 </div>
77 {% endif %}
78 {% endif %}
General Comments 0
You need to be logged in to leave comments. Login now