{% extends "admin/base_site.html" %} {% load i18n %} {% block coltype %}colSM{% endblock %} {% block breadcrumbs %}
{% translate 'Home' %} {% translate 'Documentation' %} {% translate 'Tags' %}
{% endblock %} {% block title %}{% translate 'Template Tags' %}{% endblock %} {% block content %}

{% translate '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 %}

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


{% 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 %}