"list staffers pdf"

This commit is contained in:
Doug Le Tough 2018-05-09 11:24:45 +02:00
parent 1336b1279a
commit f19db8ffed
1 changed files with 12 additions and 1 deletions

View File

@ -1,5 +1,16 @@
<table>
<th>Pseudo</th>
<th>Phone</th>
<th>Mail</th>
<th>Régime</th>
<tr>
<td>{{staffer.name}}</td>
<td>{{staffer.phone}}</td>
<td>{{staffer.mail}}</td>
<td>{{staffer.diet}}</td>
</tr>
</table>
{% for staffer in staffers %}
<p>
{{staffer.name}},{{staffer.phone}},{{staffer.mail}},{{staffer.diet}}
</p>
{% endfor %}