participer.thsf.net/templates/list_users_txt.html

15 lines
332 B
HTML

<table style='border-width: 1px; border-style: solid; padding: 5px;'>
<th>Pseudo</th>
<th>Phone</th>
<th>Mail</th>
<th>Régime</th>
{% for staffer in staffers %}
<tr>
<td>{{staffer.name}}</td>
<td>{{staffer.phone}}</td>
<td>{{staffer.mail}}</td>
<td>{{staffer.diet}}</td>
</tr>
{% endfor %}
</table>