{% extends "admin/base_site.html" %} {% load i18n %} {% block javascripts %} {{ block.super }} {% endblock %} {% block bodyclass %}grp-docutils{% endblock %} {% block content-class %}{% endblock %} {% block title %}Template tags{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Template tag documentation

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

To use these tags, put {% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %} in your template before using the tag.

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

{{ tag.name }}

{% if tag.title or tag.body %}
{% if tag.title %}

{{ tag.title }}

{% endif %} {% if tag.body %}

{{ tag.body }}

{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}