43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
{% extends "./base_site.html" %}
|
|
{% load i18n static %}
|
|
|
|
{% block content %}
|
|
<div id="content-main">
|
|
<h1>{{ object }}</h1>
|
|
<table>
|
|
<tr>
|
|
<th width="100px">Description</th>
|
|
<td>{{ object.description }}</td>
|
|
</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 %}
|
|
- {{ c.libelle }} ({{ c.code }})<br>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Domaine</th>
|
|
<td>{{ object.domaine.url }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Responsable</th>
|
|
<td>{{ object.domaine.responsable.descr|safe }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Modules concernés</th>
|
|
<td>
|
|
{% for m in object.module_set.all %}
|
|
{{ m.url }}<br>
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|