{% extends 'djangomaster/base.html' %} {% load i18n %} {% block page_title %}{% trans 'Template Tags and Filters' %}{% 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 f in mod.filters %} -> {{ f.name }}
{% endfor %} {% endif %}
{% endfor %}
{% endblock %}