Competences

This commit is contained in:
alazo 2017-05-04 06:19:20 +02:00
parent e490cde92d
commit 12ce9c7900
3 changed files with 42 additions and 2 deletions

View file

@ -0,0 +1,28 @@
{% 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 compétences</h1>
<table border="0">
{% for c in object_list %}
<tr><td colspan="3">{{c}}</td></td></tr>
{% for p in c.module_set.all %}
<tr><th width="10px">&nbsp;</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">&nbsp;<td><a href=" {% url 'module-detail' m.id %}">{{m}}</a></td></tr>
{% endfor %}
{% endfor %}
{% endfor %}
</table>
</div>
{% endblock %}