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

24 lines
629 B
HTML

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