eds/templates/cms/processus_detail.html

31 lines
816 B
HTML
Raw Normal View History

2017-01-05 07:09:33 +01:00
{% extends "./base_site.html" %}
{% load i18n static %}
{% block coltype %}colMS{% endblock %}
{% block bodyclass %}{{ block.super }} dashboard{% endblock %}
{% block content %}
<div id="content-main">
<h1>{{object}}</h1>
<table>
<tr><th>Description</th><td>{{object.description}}</td></tr>
2017-01-08 22:23:53 +01:00
<tr><th>Compétences visées</th><td><p>L'éducateur social, l'éducatrice sociale:</p>
2017-01-05 07:09:33 +01:00
{% for m in object.module_set.all %}{% for c in m.competences.all %}
- {{c.libelle}} ({{c.code}})<br />{% endfor %}{% endfor %}</td></tr>
<tr><th>Domaine</th><td>{{object.domaine.url|safe}}</td></tr>
2017-02-24 17:26:42 +01:00
<tr><th>Responsable</th><td>{{object.domaine.responsable.descr|safe}}</td></tr>
2017-01-05 07:09:33 +01:00
<tr><th>Modules concernés</th><td>{% for m in object.module_set.all %}{{m.url|safe}}</br>{% endfor %}</td></tr>
</table>
</div>
{% endblock %}