Commit | Line | Data |
---|---|---|
a9faef67 | 1 | {% extends 'base.html' %} |
2 | ||
3 | {% block title %}RH - Employés{% endblock %} | |
a9faef67 | 4 | {% block sous_titre %}Employés{% endblock %} |
5 | ||
6 | {% block main %} | |
7 | <h1>Employés</h1> | |
8 | ||
9 | <ul> | |
10 | {% for e in employes %} | |
11 | <li><a href="{% url rh_employe e.id %}">{{ e }}</a></li> | |
12 | {% endfor %} | |
13 | </ul> | |
14 | ||
15 | {% endblock %} | |
16 |