+ {% for category in tag_categories %}
+ <a href="#" style="font-size: {{category.cloud_size}}em;" {% if tag.category == category %}class="selected"{% endif %} data-category-id="{{category.id}}">{{category}}</a>
+ {% endfor %}
+ </div>
+
+ <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 atag == tag %}<strong style="font-size: {{atag.cloud_size}}em;">{{ atag }}</strong>
+ {% else %}<a href="?tag={{ atag.slug }}" style="font-size: {{atag.cloud_size}}em;">{{ atag }}</a>
+ {% endif %}
+ {% endfor %}
+ </div>
+ {% endfor %}
+ </div>
+ <div>
+ {% if tag %}<a href=".">Pokaż wszystkie pytania</a>{% endif %}
+ </div>
+</div>