participer.thsf.net/templates/list_users_txt.html

15 lines
332 B
HTML
Raw Normal View History

2018-05-09 11:27:00 +02:00
<table style='border-width: 1px; border-style: solid; padding: 5px;'>
2018-05-09 11:24:45 +02:00
<th>Pseudo</th>
<th>Phone</th>
<th>Mail</th>
<th>Régime</th>
2018-05-09 11:25:30 +02:00
{% for staffer in staffers %}
2018-05-09 11:24:45 +02:00
<tr>
<td>{{staffer.name}}</td>
<td>{{staffer.phone}}</td>
<td>{{staffer.mail}}</td>
<td>{{staffer.diet}}</td>
</tr>
2018-05-09 11:25:30 +02:00
{% endfor %}
2018-05-09 11:24:45 +02:00
</table>