{% extends "base.html" %} {% load i18n %} {% block content %}

{% trans "Tags" %}

{% trans "New Tag" %}

{% trans "Tag Cloud" %}

{% trans "Sort by:" %} {% trans "Name (A-Z)" %} {% trans "Name (Z-A)" %} {% trans "Most Used" %} {% trans "Least Used" %}
{% for tag in tags %}
{% with icon_classes="w-8 h-8 mx-auto" %} {% if forloop.counter|divisibleby:5 %} {% elif forloop.counter|divisibleby:4 %} {% elif forloop.counter|divisibleby:3 %} {% elif forloop.counter|divisibleby:2 %} {% else %} {% endif %} {% endwith %}

{{ tag.name }}

{{ tag.total_count }} {% trans "uses" %}
{% empty %}
{% trans "No tags found." %}
{% endfor %}
{% endblock %}