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

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

{{ filter.title }}

{{ filter.body }}

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