{% extends "site_base.html" %} {% block title %}{% trans "Tags List" %} {{ block.super }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans 'Tags List' %}

{% trans 'All Tags' %}

{% for tag in tags %} {% if tag.num > 0 %} {% endif %} {% endfor %}
{{ tag.name }} {{ tag.num }}
{% for item in content_types %}

{{ item.name|title }}

{% for tag in item.tags %} {% endfor %}
{{ tag.name }} {{ tag.num }}
{% endfor %}
{% endblock %}