8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-02 07:52:23 +00:00

Added switch name to port search results, moved link to switch on switch name rather than port number

This commit is contained in:
edpibu 2018-09-26 14:19:59 +02:00 committed by chirac
parent c7949ac684
commit 7e36cbc7ba

View file

@ -32,6 +32,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<tr>
{% trans "Port" as tr_port %}
<th>{% include "buttons/sort.html" with prefix='port' col='port' text=tr_port %}</th>
{% if search %}
<th>{% trans "Switch" %}</th>
{% endif %}
{% trans "Room" as tr_room %}
<th>{% include "buttons/sort.html" with prefix='port' col='room' text=tr_room %}</th>
{% trans "Interface" as tr_interface %}
@ -46,11 +49,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</thead>
{% for port in port_list %}
<tr>
{% if search %}
<td><a href="{% url 'topologie:index-port' switchid=port.switch.id %}">{{ port.port }}</a></td>
{% else %}
<td>{{ port.port }}</td>
{% endif %}
{% if search %}
<td>
<a href="{% url 'topologie:index-port' switchid=port.switch.id %}">{{ port.switch }}</a>
</td>
{% endif %}
<td>
{% if port.room %}
{{ port.room }}