Commit | Line | Data |
---|---|---|
4a1f2ece | 1 | {% extends 'admin/change_form.html' %} |
ce740bb5 | 2 | |
4a1f2ece OL |
3 | {% load i18n admin_modify adminmedia %} |
4 | ||
ce740bb5 OL |
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 | ||
4a1f2ece OL |
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 %} | |
ce740bb5 OL |
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 %} | |
fbe60a9d | 30 | <hr /> |
ce740bb5 | 31 | {% endfor %} |
4a1f2ece | 32 | {% endblock %} |