{% extends "base.html" %} {% load core_tags %} {% load url from future %} {% block title %}All tags{% endblock %} {% block content_header %}All tags{% endblock %} {% block content %} {% if object_list %}

{% if has_previous %}< Previous {{ results_per_page }}{% endif %}  {% if has_next %}Next {{ results_per_page }} >{% endif %}

{% else %}

No tags have been used yet.

{% endif %} {% endblock %} {% block sidebar %}

There are currently {{ hits }} tag{{ hits|pluralize }} in use.

Currently, the most-used tags are:

    {% for tag in "cab.snippet"|call_manager:"top_tags"|slice:":5" %}
  1. {{ tag.name }}
  2. {% endfor %}
{% endblock %}