projets
/
auf_rh_dae.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
ergo : block titre vient de settings
[auf_rh_dae.git]
/
project
/
rh
/
templates
/
rh
/
employes_liste.html
1
{% extends 'base.html' %}
2
3
{% block title %}RH - Employés{% endblock %}
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