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

{% trans "Tags" %}

{{ tags|length }} {% trans "tags" %} · {% trans "click the cloud or a card to explore" %}

{% trans "New Tag" %}

{% trans "Tag Cloud" %}

{% for tag in tags %} {{ tag.name }} {{ tag.total_count }} {% empty %}
{% trans "No tags found." %}
{% endfor %}
{% trans "No matching tags found." %}
{% endblock %}