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

Template filter documentation

{% regroup filters|dictsort:"library" by library as filter_libraries %} {% for library in filter_libraries %}

{% firstof library.grouper "Built-in filters" %}

{% endfor %}
{% regroup filters|dictsort:"library" by library as filter_libraries %} {% for library in filter_libraries %}

{% firstof library.grouper "Built-in filters" %}

{% if library.grouper %}

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

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

{{ filter.name }}

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

{{ filter.title }}

{% endif %} {% if filter.body %}

{{ filter.body }}

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