##// END OF EJS Templates
Don't show 'replies' and 'images' texts in the thread
neko259 -
r1770:038b4c85 default
parent child Browse files
Show More
@@ -208,9 +208,6 b' function updateMetadataPanel() {'
208 208
209 209 blink(replyCountField);
210 210 blink(imageCountField);
211
212 $('#message-count-text').text(ngettext('message', 'messages', replyCount));
213 $('#image-count-text').text(ngettext('image', 'images', imageCount));
214 211 }
215 212
216 213 /**
@@ -30,7 +30,7 b''
30 30 <span id="reply-count">{{ thread.get_reply_count }}</span>{% if thread.has_post_limit %}/{{ thread.max_posts }}{% endif %}
31 31 {% endwith %}
32 32 {% with images_count=thread.get_images_count%}
33 <span id="image-count">{{ images_count }}</span> <span id="image-count-text">
33 <span id="image-count">{{ images_count }}</span>
34 34 {% endwith %}
35 35 {% trans 'Last update: ' %}<span id="last-update"><time datetime="{{ thread.last_edit_time|date:'c' }}">{{ thread.last_edit_time }}</time></span>
36 36 </span>
General Comments 0
You need to be logged in to leave comments. Login now