PDF_periodes
This commit is contained in:
parent
7b04443965
commit
d9d4fd7879
31 changed files with 1175 additions and 999 deletions
|
|
@ -11,20 +11,27 @@
|
|||
{% block content %}
|
||||
|
||||
<div id="content-main">
|
||||
<h1>Liste des domaines</h1>
|
||||
<table border="0">
|
||||
{% for d in object_list %}
|
||||
<tr><td colspan="3">{{d}}</td></td></tr>
|
||||
{% for p in d.processus_set.all %}
|
||||
<tr><th width="10px"> </th><td colspan="2"><a href=" {% url 'processus-detail' p.id %}">{{p}}</a></td></tr>
|
||||
{% for m in p.module_set.all %}
|
||||
<tr><th colspan="2" width="45px"> <td><a href=" {% url 'module-detail' m.id %}">{{m}}</a></td></tr>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
|
||||
<h1>Liste des domaines</h1>
|
||||
<table border="0">
|
||||
{% for d in object_list %}
|
||||
<tr>
|
||||
<td colspan="3">{{d}}</td></td>
|
||||
</tr>
|
||||
{% for p in d.processus_set.all %}
|
||||
<tr>
|
||||
<th width="10px"> </th>
|
||||
<td colspan="2"><a href=" {% url 'processus-detail' p.id %}">{{p}}</a></td>
|
||||
</tr>
|
||||
{% for m in p.module_set.all %}
|
||||
<tr>
|
||||
<th colspan="2" width="45px"> </th>
|
||||
<td><a href=" {% url 'module-detail' m.id %}">{{m}}</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue