mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-26 22:52:26 +00:00
15 lines
485 B
HTML
15 lines
485 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><a class="btn btn-primary btn-sm" role="button" href="{% url 'users:edit-school' school.id %}"><i class="glyphicon glyphicon-pushpin"></i> Editer</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|