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

{{ tag.name }}

{% if tag.description %}

{{ tag.description }}

{% endif %}

{% trans "Links with this tag" %}

{% if links %}
{% for link in links %}

{{ link.alias }}

{% if link.description %}

{{ link.description }}

{% endif %}
{% trans "Created" %}: {{ link.created_at|date:"Y-m-d" }}
{% endfor %}
{% else %}

{% trans "No links found with this tag." %}

{% endif %}
{% endblock %}