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

{% trans "Tags" %}

{% trans "New Tag" %}
{% for tag in tags %}

{{ tag.name }}

{% if tag.description %}

{{ tag.description }}

{% endif %}
{% with link_count=tag.links.count %} {{ link_count }} {% if link_count == 1 %}{% trans "link" %}{% else %}{% trans "links" %}{% endif %} {% endwith %}
{% empty %}
{% trans "No tags found." %}
{% endfor %}
{% if is_paginated %}
{% endif %}
{% endblock %}