{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock extrastyle %} {% block breadcrumbs %} {% endblock %} {% block title %}{% translate 'Template filters' %}{% endblock %} {% block content_title %}{% translate 'Template filters' %}{% endblock %} {% block content %} {% regroup models by app_config as grouped_models %}
{% regroup filters|dictsort:"library" by library as filter_libraries %} {% for library in filter_libraries %}

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

{% for filter in library.list|dictsort:"name" %} {{ filter.name }} {% endfor %}
{% endfor %}
{% 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 }}

{% if filter.title %}
{{ filter.title|striptags }}
{% endif %} {% if filter.body %}{{ filter.body }}{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}