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 @@ -16,7 +16,7 @@ {% if tag %}
-

{% trans 'Tag: ' %}{{ tag.name }} +

#{{ tag.name }} {% if tag in user.fav_tags.all %} @@ -74,11 +74,11 @@ {{ thread.thread.get_reply_count }} {% trans 'replies' %}, {{ thread.thread.get_images_count }} {% trans 'images' %}. {% if thread.thread.tags %} - {% trans 'Tags' %}: + {% for tag in thread.thread.tags.all %} - {{ tag.name }} + #{{ tag.name }} {% 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 @@ -77,10 +77,10 @@

{% if post.id == posts.0.id %}
- {% trans 'Tags' %}: + {% for tag in post.tags.all %} - {{ tag.name }} + #{{ tag.name }} {% endfor %}