]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/sidebar/recent_tags.html
initial import
[osqa.git] / forum / skins / default / templates / sidebar / recent_tags.html
1 {% load i18n %}\r
2 \r
3 <div class="boxC">\r
4         <h3>{% trans "Recent tags" %}</h3>\r
5         <div class="body">\r
6          <div class="tags">\r
7         {% for tag in tags %}\r
8             <a rel="tag"\r
9                                 title="{% blocktrans with tag.name as tagname %}see questions tagged '{{tagname}}'{% endblocktrans %}" href="{% url tag_questions tag.name|urlencode %}">{{ tag.name }}</a>\r
10         {% endfor %}\r
11         </div>\r
12         <div class="more"><a href="{% url tags %}">{% trans "popular tags" %} </a> </div>\r
13     </div>\r
14 </div>