{% extends "admin/base_site.html" %} {% load i18n %} {% block coltype %}colSM{% endblock %} {% block breadcrumbs %} {% endblock %} {% block title %}{% trans 'Template tags' %}{% endblock %} {% block content %}

{% trans 'Template tag documentation' %}

{% regroup tags|dictsort:"library" by library as tag_libraries %} {% for library in tag_libraries %}

{% firstof library.grouper _("Built-in tags") %}

{% if library.grouper %}

{% blocktrans with code="{"|add:"% load "|add:library.grouper|add:" %"|add:"}" %}To use these tags, put {{ code }} in your template before using the tag.{% endblocktrans %}


{% endif %} {% for tag in library.list|dictsort:"name" %}

{{ tag.name }}

{{ tag.title|striptags }}

{{ tag.body }} {% if not forloop.last %}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %} {% block sidebar %} {% endblock %}