-{% for atag in tags %} /
- {% if atag == tag %}<strong>{{ atag }}</strong>
- {% else %}<a href="?tag={{ atag.slug }}">{{ atag }}</a>
- {% endif %}
-{% endfor %}
+ <div id="questions-subjects">
+ {% for category_id, tag_list in tag_lists.items %}
+ <div class="questions-tags-group" data-category-id="{{category_id}}">
+ Wyświetl tylko na temat:
+ {% for atag in tag_list %} {% if not forloop.first %}/{% endif %}
+ {% if atag == tag %}<strong>{{ atag }}</strong>
+ {% else %}<a href="?tag={{ atag.slug }}">{{ atag }}</a>
+ {% endif %}
+ {% endfor %}
+ </div>
+ {% endfor %}
+ </div>
+</div>