{% extends "ticker_base.html" %} {% load pagination_tags %} {% block content %}

{% trans "Entries tagged with "{{ the_tag }}"" %}

{% autopaginate entry_list %} {% for entry in entry_list %} {% include "ticker/entry.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% endblock %} {% block content-related %} {% if related_tags %}

{% trans "Related tags" %}

{% for tag in related_tags %} {{ tag.name }} {% endfor %}

{% endif %} {{ super.block }} {% endblock %}