Commit | Line | Data |
---|---|---|
5579d48d | 1 | {% load auf_menu dae %} |
21f749ab OL |
2 | |
3 | <ul class="menu"> | |
7ad7408e NC |
4 | <li class="{% menu_actif request '^$' %}"> |
5 | <a href="{% url index %}">Accueil</a> | |
6 | </li> | |
a8b587eb OL |
7 | |
8 | {% if perms.rh %} | |
67c10912 OL |
9 | <li> |
10 | <a href="{% url admin:app_list app_label="recrutement" %}">Gestion des | |
11 | candidatures</a> | |
12 | </li> | |
a8b587eb OL |
13 | {% endif %} |
14 | ||
15 | {% if request.user.is_authenticated %} | |
139686f2 | 16 | <li class="{% menu_actif request '^dae$' %}"> |
83339028 | 17 | <a href="{% url dae_index %}">Demande d'autorisation d'engagement</a> |
031978b0 | 18 | <ul> |
5579d48d | 19 | {% if request.user|peut_ajouter %} |
d00f4604 | 20 | <li class="{% menu_actif request '^poste$' %}"> |
21 | <a href="{% url poste %}">Poste : formulaire</a> | |
22 | </li> | |
5579d48d | 23 | {% endif %} |
031978b0 | 24 | <li class="{% menu_actif request '^postes$' %}"> |
d00f4604 | 25 | <a href="{% url dae_postes_liste %}">Postes : voir et valider</a> |
031978b0 | 26 | </li> |
5579d48d | 27 | {% if request.user|peut_ajouter %} |
031978b0 | 28 | <li class="{% menu_actif request '^embauche$' %}"> |
d00f4604 | 29 | <a href="{% url embauche %}">Embauche : formulaire</a> |
30 | </li> | |
5579d48d | 31 | {% endif %} |
d00f4604 | 32 | <li class="{% menu_actif request '^embauches$' %}"> |
33 | <a href="{% url dae_embauches_liste %}">Embauches : voir et valider</a> | |
031978b0 | 34 | </li> |
44055779 EMS |
35 | <li class="{% menu_actif request '^embauches_finalisees$' %}"> |
36 | <a href="{% url embauches_finalisees %}">Embauches finalisées</a> | |
37 | </li> | |
67c10912 OL |
38 | {% if request.user|peut_importer %} |
39 | <li> | |
40 | <a href="{% url admin:dae_dossierfinalise_changelist %}">Importation des embauches</a> | |
41 | </li> | |
42 | {% endif %} | |
43 | {% if request.user|peut_importer %} | |
44 | <li> | |
45 | <a href="{% url admin:dae_postefinalise_changelist %}">Importation des postes</a> | |
46 | </li> | |
47 | {% endif %} | |
031978b0 | 48 | </ul> |
a8b587eb | 49 | </li> |
67c10912 | 50 | {% endif %} |
a8b587eb OL |
51 | |
52 | {% if perms.rh %} | |
83339028 OL |
53 | <li> |
54 | <a href="{% url admin:app_list app_label="rh" %}">Gestion des personnels</a> | |
55 | </li> | |
a8b587eb OL |
56 | {% endif %} |
57 | ||
21f749ab | 58 | </ul> |