participer.thsf.net/templates/list_users_txt.html

17 lines
340 B
HTML

<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 %}
{{staffer.name}},{{staffer.phone}},{{staffer.mail}},{{staffer.diet}}
</p>
{% endfor %}