summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tags/tag_cloud.html
blob: a18a004e48dd688555115ea0a2ee832b10220567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% load i18n %}

<div>
  <ul>
    {% for tag in tags %}
    <li>
      <a href="{% url gstudio_tag_detail tag.name %}"
         title="{% blocktrans count tag.count as nodetype_count %}{{ nodetype_count }} nodetype{% plural %}{{ nodetype_count }} nodetypes{% endblocktrans %}"
         class="tag_{{ tag.font_size }}">{{ tag }}</a>
    </li>
    {% endfor %}
  </ul>
</div>