mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 19:33:11 +00:00
30 lines
897 B
HTML
30 lines
897 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Dns</th>
|
|
<th>Ipv4</th>
|
|
<th>Localisation</th>
|
|
<th>Ports</th>
|
|
<th>Détails</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for switch in switch_list %}
|
|
<tr>
|
|
<td>
|
|
<a title="Configuer" href="{% url 'topologie:index-port' switch.pk %}">
|
|
{{switch.switch_interface}}
|
|
</a>
|
|
</td>
|
|
<td>{{switch.switch_interface.ipv4}}</td>
|
|
<td>{{switch.location}}</td>
|
|
<td>{{switch.number}}</td>
|
|
<td>{{switch.details}}</td>
|
|
<td class="text-right">
|
|
<a class="btn btn-info btn-sm" role="button" title="Historique" href="{% url 'topologie:history' 'switch' switch.pk %}">
|
|
<i class="glyphicon glyphicon-time"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|