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

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

{% if mod.tags %}

Tags

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

Filters

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