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

18 lines
295 B
HTML

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