summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/tags/tag_cloud.html
blob: fac00616624bcab447871eb00897af810d7ccf8b (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 objectapp_tag_detail tag.name %}"
         title="{% blocktrans count tag.count as gbobject_count %}{{ gbobject_count }} gbobject{% plural %}{{ gbobject_count }} gbobjects{% endblocktrans %}"
         class="tag_{{ tag.font_size }}">{{ tag }}</a>
    </li>
    {% endfor %}
  </ul>
</div>