Ultime commit!

This commit is contained in:
alazo 2018-05-23 21:16:25 +02:00
parent 729bc1bea1
commit f767b7a41b
25 changed files with 186 additions and 532 deletions

View file

@ -1,8 +1,6 @@
{% extends "./base_site.html" %}
{% load i18n static %}
{% block coltype %}colMS{% endblock %}
{% block bodyclass %}{{ block.super }}{% endblock %}
{% block content %}
<div id="content-main">
@ -10,17 +8,17 @@
<table border="0">
{% for d in object_list %}
<tr>
<td colspan="3">{{d}}</td></td>
<td colspan="3">{{ d }}</td></td>
</tr>
{% for p in d.processus_set.all %}
<tr>
<th width="10px">&nbsp;</th>
<td colspan="2"><a href=" {% url 'processus-detail' p.id %}">{{p}}</a></td>
<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">&nbsp;</th>
<td><a href=" {% url 'module-detail' m.id %}">{{m}}</a></td>
<td><a href=" {% url 'module-detail' m.id %}">{{ m }}</a></td>
</tr>
{% endfor %}
{% endfor %}