{% extends "admin/base_site.html" %} {% load adminmedia %} {% load i18n %} {% block javascripts %} {{ block.super }} {% endblock %} {% block bodyclass %}documentation{% endblock %} {% block content-class %}content-grid{% endblock %} {% block breadcrumbs %}{% endblock %} {% block title %}Template tags{% 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 }}

{{ tag.title }}

{{ tag.body }}

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