19 lines
394 B
HTML
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 %}
|
|
|
|
|