eds/templates/cms/module_list.html
2017-08-13 22:58:46 +02:00

23 lines
484 B
HTML

{% extends "./base_site.html" %}
{% load i18n static %}
{% block coltype %}colMS{% endblock %}
{% block bodyclass %}{{ block.super }}{% endblock %}
{% 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 %}