{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block extrastyle %} {{ block.super }} {% endblock extrastyle %} {% block title %}{% translate 'Template tags' %}{% endblock %} {% block content_title %}{% translate 'Template tags' %}{% endblock %} {% block content %} {% regroup models by app_config as grouped_models %}
{% regroup tags|dictsort:"library" by library as tag_libraries %} {% for library in tag_libraries %}

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

{% for tag in library.list|dictsort:"name" %} {{ tag.name }} {% endfor %}
{% endfor %}
{% 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 }}

{% if tag.title %}
{{ tag.title|striptags }}
{% endif %} {% if tag.body %}{{ tag.body }}{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}