otmp_site/templates/taxonomy_list.html
2022-12-03 21:01:01 +02:00

17 lines
No EOL
337 B
HTML

{% extends "base.html" %}
{% block header %}
<p><a href="{{ current_path }}..">..</a>{{ current_path }}</p>
<h1>{{ taxonomy.name }}</h1>
{% endblock header %}
{% block content %}
<ul>
{% for term in terms %}
<li>
<a href="{{ term.permalink | safe }}">{{ term.name }}</a>
</li>
{% endfor %}
</ul>
{% endblock content %}