| 1 | {% extends 'admin/change_form.html' %} |
| 2 | |
| 3 | {% load i18n admin_modify adminmedia %} |
| 4 | |
| 5 | {% block extrahead %} |
| 6 | {{ block.super }} |
| 7 | <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/admin_print.css" media="print"/> |
| 8 | <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/rh_apercus.css" media="all"/> |
| 9 | {% endblock %} |
| 10 | |
| 11 | {% block breadcrumbs %}{% if not is_popup %} |
| 12 | <div class="breadcrumbs"> |
| 13 | <a href="{% url admin:index %}">{% trans "Home" %}</a> › |
| 14 | <a href="{% url admin:index %}/rh">Rh</a> › |
| 15 | <a href="{% url admin:rh_employe_changelist %}">Liste employés</a> › |
| 16 | {{ employe }} |
| 17 | </div> |
| 18 | {% endif %}{% endblock %} |
| 19 | |
| 20 | {% block content %} |
| 21 | {% include "rh/include/imprimer.html" %} |
| 22 | {% include "rh/include/employe.html" %} |
| 23 | {% for dossier in dossiers %} |
| 24 | <h4>{{ dossier }}</h4> |
| 25 | {% if forloop.counter0 == 0 %} |
| 26 | {% include "rh/include/dossier.html" %} |
| 27 | {% else %} |
| 28 | <p><a target="_blank" href="{% url dossier_apercu dossier.id %}">consulter</a></p> |
| 29 | {% endif %} |
| 30 | <hr /> |
| 31 | {% endfor %} |
| 32 | {% endblock %} |