{% extends "admin/base_site.html" %} {% load i18n %} {% block coltype %}colSM{% endblock %} {% block breadcrumbs %}
{% translate 'Home' %} {% translate 'Documentation' %} {% translate 'Filters' %}
{% endblock %} {% block title %}{% translate 'Template Filters' %}{% endblock %} {% block content %}

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

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


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