mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-07 10:26:25 +00:00
22 lines
705 B
HTML
22 lines
705 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Port</th>
|
|
<th>Room</th>
|
|
<th>Interface machine</th>
|
|
<th>Related</th>
|
|
<th>Détails</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for port in port_list %}
|
|
<tr>
|
|
<td>{{ port.port }}</td>
|
|
<td>{{ port.room }}</td>
|
|
<td>{{ port.machine_interface }}</td>
|
|
<td>{{ port.related }}</td>
|
|
<td>{{ port.details }}</td>
|
|
<td>{% if is_infra %}<a class="btn btn-primary btn-sm" role="button" href="{% url 'topologie:edit-port' port.id %}"><i class="glyphicon glyphicon-random"></i> Editer</a>{% endif %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|