mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-12-01 02:24:37 +00:00
18 lines
549 B
HTML
18 lines
549 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Bâtiment</th>
|
|
<th>Numero</th>
|
|
<th>Détails</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for switch in switch_list %}
|
|
<tr>
|
|
<td>{{switch.building}}</td>
|
|
<td>{{switch.number}}</td>
|
|
<td>{{switch.details}}</td>
|
|
<td><a class="btn btn-primary btn-sm" role="button" href="{% url 'topologie:index-port' switch.pk %}"><i class="glyphicon glyphicon-cog"></i> Configurer</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|