participer.thsf.net/templates/list_users_txt.html

17 lines
340 B
HTML
Raw Normal View History

2018-05-09 11:24:45 +02:00
<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>
2018-05-09 10:39:36 +02:00
{% for staffer in staffers %}
2018-05-09 10:53:04 +02:00
{{staffer.name}},{{staffer.phone}},{{staffer.mail}},{{staffer.diet}}
2018-05-09 11:22:13 +02:00
</p>
2018-05-09 10:39:36 +02:00
{% endfor %}