otmp_site/templates/taxonomy_list.html

16 lines
336 B
HTML
Raw Normal View History

2022-12-03 20:01:01 +01:00
{% 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 %}