eds/templates/cms/processus_list.html

25 lines
629 B
HTML
Raw Permalink Normal View History

2017-04-07 09:17:20 +02:00
{% extends "./base_site.html" %}
{% load i18n static %}
{% block content %}
<div id="content-main">
2017-08-13 22:58:46 +02:00
<h1>Liste des processus</h1>
<table>
{% for p in object_list %}
<tr>
2018-05-23 21:16:25 +02:00
<td>{{ p.code }}</td>
<td><a href=" {% url 'processus-detail' p.id %}">{{ p.nom }}</a></td>
2017-08-13 22:58:46 +02:00
</tr>
{% for m in p.module_set.all %}
<tr>
<th>&nbsp;</th>
2018-05-23 21:16:25 +02:00
<td><a href=" {% url 'module-detail' m.id %}">{{ m }}</a></td>
2017-08-13 22:58:46 +02:00
</tr>
{% endfor %}
{% endfor %}
</table>
2017-04-07 09:17:20 +02:00
</div>
{% endblock %}