eds/templates/cms/module_list.html
2018-05-23 21:16:25 +02:00

19 lines
394 B
HTML

{% extends "./base_site.html" %}
{% load i18n static %}
{% block content %}
<div id="content-main">
<h1>Liste des modules</h1>
<table>
{% for m in object_list %}
<tr>
<th>{{ m.code }}</th>
<td><a href=" {% url 'module-detail' m.id %}">{{ m.nom }}</a></td>
</tr>
{% endfor %}
</table>
</div>
{% endblock %}