eds/templates/cms/module_list.html
2017-04-07 09:17:20 +02:00

25 lines
402 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 %}