{% extends "two_column_body.html" %} {% import "macros.html" as macros %} {% block title %}{% spaceless %}{% trans %}Tag list{% endtrans %}{% endspaceless %}{% endblock %} {% block content %} {% if stag %}

{% trans %}Tags, matching "{{ stag }}"{% endtrans %}

{% else %}

{% trans %}Tag list{% endtrans %}

{% endif %}
{% trans %}Sort by »{% endtrans %} {% trans %}by name{% endtrans %} {% trans %}by popularity{% endtrans %}
{% if tag_list_type == 'list' %} {% if not tags.object_list %} {% trans %}Nothing found{% endtrans %} {% endif %} {% if tags.object_list %}
{{macros.paginator(paginator_context)}}
{% endif %} {% else %}
{% if not tags %} {% trans %}Nothing found{% endtrans %} {% endif %} {{ macros.tag_cloud(tags = tags, font_sizes = font_size) }} {% endif %} {% endblock %} {% block endjs %} {% endblock %}