{% extends "admin/base_site.html" %} {% load i18n %} {% block coltype %}colSM{% endblock %} {% block breadcrumbs %} {% endblock %} {% block title %}{% trans 'Template filters' %}{% endblock %} {% block content %}

{% trans 'Template filter documentation' %}

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

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

{% if library.grouper %}

{% blocktrans with code="{"|add:"% load "|add:library.grouper|add:" %"|add:"}" %}To use these filters, put {{ code }} in your template before using the filter.{% endblocktrans %}


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

{{ filter.name }}

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