{% extends 'djangomaster/base.html' %} {% load i18n %} {% block page_title %}{% trans 'Templatetags and Filters' %}{% endblock %} {% block content %} {% for mod in tags %}

{{ mod.name }} {{ mod.filepath }}

{% if mod.tags %}

Templatetags

    {% for tag in mod.tags %}
  • {{ tag.name }}
  • {% endfor %}
{% endif %} {% if mod.filters %}

Filters

    {% for tag in mod.filters %}
  • {{ tag.name }}
  • {% endfor %}
{% endif %}
{% endfor %} {% endblock %}