15 lines
270 B
HTML
15 lines
270 B
HTML
<table>
|
|
<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>
|