mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Ajout de l'affichage des switchs dans la liste des modèles de switchs.
This commit is contained in:
parent
eded66beb0
commit
1ffb481aef
1 changed files with 9 additions and 1 deletions
|
@ -38,6 +38,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
<th>Firmware</th>
|
<th>Firmware</th>
|
||||||
{% trans "Switch constructor" as tr_constructor %}
|
{% trans "Switch constructor" as tr_constructor %}
|
||||||
<th>{% include "buttons/sort.html" with prefix='model-switch' col='constructor' text=tr_constructor %}</th>
|
<th>{% include "buttons/sort.html" with prefix='model-switch' col='constructor' text=tr_constructor %}</th>
|
||||||
|
<th>{% trans "Switches" %}
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -46,6 +47,13 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
<td>{{ model_switch.reference }}</td>
|
<td>{{ model_switch.reference }}</td>
|
||||||
<td>{{model_switch.firmware}}</td>
|
<td>{{model_switch.firmware}}</td>
|
||||||
<td>{{ model_switch.constructor }}</td>
|
<td>{{ model_switch.constructor }}</td>
|
||||||
|
<td>
|
||||||
|
{% for switch in model_switch.switch_set.all %}
|
||||||
|
<a href="{% url 'topologie:index-port' switch.pk %}">
|
||||||
|
{{ switch }}
|
||||||
|
</a>
|
||||||
|
{% endfor %}
|
||||||
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
{% can_edit model_switch %}
|
{% can_edit model_switch %}
|
||||||
<a class="btn btn-primary btn-sm" role="button" title={% trans "Edit" %} href="{% url 'topologie:edit-model-switch' model_switch.id %}">
|
<a class="btn btn-primary btn-sm" role="button" title={% trans "Edit" %} href="{% url 'topologie:edit-model-switch' model_switch.id %}">
|
||||||
|
|
Loading…
Reference in a new issue