summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tag_list.html
blob: eeac3eaeb374eb9f8d791b069d28c90ee9222b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "gstudio/base.html" %}
{% load i18n %}

{% block meta-description %}{% trans "Tag list" %}{% endblock %}

{% block title %}{% trans "Tags" %}{% endblock %}

{% block content %}
<h2>{% trans "Tag list" %}</h2>
<div>
  <ul>
    {% for object in object_list %}
    <li>
      <a href="{% url gstudio_tag_detail object %}" title="{{ object }}">{{ object }}</a>
      {% blocktrans count object.count as nodetype_count %}{{ nodetype_count }} nodetype{% plural %}{{ nodetype_count }} nodetypes{% endblocktrans %}
    </li>
    {% empty %}
    <li>
      {% trans "No tags yet." %}
    </li>
    {% endfor %}
  </ul>
</div>
{% endblock %}