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