]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/question_list/related_tags.html
initial import
[osqa.git] / forum / skins / default / templates / question_list / related_tags.html
1 {% load i18n %}\r
2 {% load humanize %}\r
3 \r
4 {% if tags %}\r
5     <div class="boxC">\r
6         <h3 class="subtitle">{% trans "Related tags" %}</h3>\r
7         <div class="tags">\r
8             {% for tag in tags %}\r
9                 <a rel="tag" title="{% blocktrans with tag.name as tag_name %}see questions tagged '{{ tag_name }}'{% endblocktrans %}"  href="{% url tag_questions tag.name|urlencode %}">{{ tag.name }}</a>\r
10                 <span class="tag-number">&#215; {{ tag.used_count|intcomma }}</span>\r
11                 <br />\r
12             {% endfor %}\r
13         </div>\r
14     </div>\r
15 {% endif %}