This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
pfwb_thesaurus/pfwb_thesaurus/templates/thesaurus/term_list.html

13 lines
211 B
HTML

{% extends "base.html" %}
{% block content %}
<h2>Points d'entrée</h2>
<ul>
{% for term in object_list %}
<li><a href="{% url 'term' pk=term.pk %}">{{ term.term }}</a></li>
{% endfor %}
</ul>
{% endblock %}