2017-04-07 09:17:20 +02:00
|
|
|
{% extends "./base_site.html" %}
|
|
|
|
|
{% load i18n static %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
<div id="content-main">
|
2018-05-23 21:16:25 +02:00
|
|
|
<h1>{{ object }}</h1>
|
2017-08-13 22:58:46 +02:00
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<th width="100px">Description</th>
|
2018-05-23 21:16:25 +02:00
|
|
|
<td>{{ object.description }}</td>
|
2017-08-13 22:58:46 +02:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Compétences visées</th>
|
|
|
|
|
<td>
|
|
|
|
|
<p>L'éducateur social, l'éducatrice sociale:</p>
|
|
|
|
|
{% for m in object.module_set.all %}
|
|
|
|
|
{% for c in m.competences.all %}
|
2018-05-23 21:16:25 +02:00
|
|
|
- {{ c.libelle }} ({{ c.code }})<br>
|
2017-08-13 22:58:46 +02:00
|
|
|
{% endfor %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Domaine</th>
|
2018-05-23 21:16:25 +02:00
|
|
|
<td>{{ object.domaine.url|safe }}</td>
|
2017-08-13 22:58:46 +02:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Responsable</th>
|
2018-05-23 21:16:25 +02:00
|
|
|
<td>{{ object.domaine.responsable.descr|safe }}</td>
|
2017-08-13 22:58:46 +02:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Modules concernés</th>
|
|
|
|
|
<td>
|
|
|
|
|
{% for m in object.module_set.all %}
|
2018-05-23 21:16:25 +02:00
|
|
|
{{ m.url|safe }}<br>
|
2017-08-13 22:58:46 +02:00
|
|
|
{% endfor %}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
2017-04-07 09:17:20 +02:00
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|