{% extends "admin/base_site.html" %} {% load i18n %} {% block coltype %}colSM{% 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" %}

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

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