28 lines
671 B
HTML
28 lines
671 B
HTML
{% 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"> </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>
|
|
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|