8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2025-01-27 18:44:21 +00:00
re2o/users/templates/users/aff_schools.html
2016-11-18 11:53:10 +01:00

18 lines
567 B
HTML

<table class="table table-striped">
<thead>
<tr>
<th>Etablissement</th>
<th></th>
</tr>
</thead>
{% for school in school_list %}
<tr>
<td>{{ school.name }}</td>
<td class="text-right">
{% include 'buttons/edit.html' with href='users:edit-school' id=school.id %}
{% include 'buttons/history.html' with href='users:history' name='school' id=school.id %}
</td>
</tr>
{% endfor %}
</table>