2017-10-26 03:07:11 +00:00
|
|
|
{% comment %}
|
2020-11-23 16:06:37 +00:00
|
|
|
Re2o est un logiciel d'administration développé initiallement au Rézo Metz. Il
|
2017-10-26 03:07:11 +00:00
|
|
|
se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
quelques clics.
|
|
|
|
|
|
|
|
Copyright © 2017 Gabriel Détraz
|
2019-09-29 14:02:28 +00:00
|
|
|
Copyright © 2017 Lara Kermarec
|
2017-10-26 03:07:11 +00:00
|
|
|
Copyright © 2017 Augustin Lemesle
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
{% endcomment %}
|
|
|
|
|
2017-12-27 22:07:05 +00:00
|
|
|
{% load acl %}
|
2018-07-19 10:30:15 +00:00
|
|
|
{% load logs_extra %}
|
2018-08-05 16:48:56 +00:00
|
|
|
{% load i18n %}
|
2017-12-27 22:07:05 +00:00
|
|
|
|
2017-10-26 03:07:11 +00:00
|
|
|
{% if model_switch_list.paginator %}
|
2019-01-08 23:40:48 +00:00
|
|
|
{% include 'pagination.html' with list=model_switch_list %}
|
2017-10-26 03:07:11 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-08-05 16:48:56 +00:00
|
|
|
{% trans "Reference" as tr_ref %}
|
2019-01-08 23:40:48 +00:00
|
|
|
<th>{% include 'buttons/sort.html' with prefix='model-switch' col='reference' text=tr_ref %}</th>
|
2018-10-11 17:52:07 +00:00
|
|
|
<th>{% trans "Commercial name" %}</th>
|
2019-11-16 14:14:22 +00:00
|
|
|
<th>{% trans "Firmware" %}</th>
|
2018-08-05 16:48:56 +00:00
|
|
|
{% trans "Switch constructor" as tr_constructor %}
|
2019-01-08 23:40:48 +00:00
|
|
|
<th>{% include 'buttons/sort.html' with prefix='model-switch' col='constructor' text=tr_constructor %}</th>
|
2018-09-20 19:25:33 +00:00
|
|
|
<th>{% trans "Switches" %}
|
|
|
|
<th></th>
|
2017-10-26 03:07:11 +00:00
|
|
|
</tr>
|
2018-07-19 10:30:15 +00:00
|
|
|
</thead>
|
|
|
|
{% for model_switch in model_switch_list %}
|
|
|
|
<tr>
|
2018-08-05 16:48:56 +00:00
|
|
|
<td>{{ model_switch.reference }}</td>
|
2018-10-11 17:52:07 +00:00
|
|
|
<td>{{ model_switch.commercial_name }}</td>
|
2019-01-08 23:40:48 +00:00
|
|
|
<td>{{ model_switch.firmware }}</td>
|
2018-08-05 16:48:56 +00:00
|
|
|
<td>{{ model_switch.constructor }}</td>
|
2018-09-20 19:25:33 +00:00
|
|
|
<td>
|
|
|
|
{% for switch in model_switch.switch_set.all %}
|
|
|
|
<a href="{% url 'topologie:index-port' switch.pk %}">
|
|
|
|
{{ switch }}
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
</td>
|
2018-07-19 10:30:15 +00:00
|
|
|
<td class="text-right">
|
|
|
|
{% can_edit model_switch %}
|
2019-01-08 23:40:48 +00:00
|
|
|
{% include 'buttons/edit.html' with href='topologie:edit-model-switch' id=model_switch.id %}
|
2018-07-19 10:30:15 +00:00
|
|
|
{% acl_end %}
|
2018-08-05 16:48:56 +00:00
|
|
|
{% history_button model_switch %}
|
2018-07-19 10:30:15 +00:00
|
|
|
{% can_delete model_switch %}
|
2019-01-08 23:40:48 +00:00
|
|
|
{% include 'buttons/suppr.html' with href='topologie:del-model-switch' id=model_switch.id %}
|
2018-07-19 10:30:15 +00:00
|
|
|
{% acl_end %}
|
2017-10-26 03:07:11 +00:00
|
|
|
</td>
|
2018-07-19 10:30:15 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2017-10-26 03:07:11 +00:00
|
|
|
</table>
|
2017-11-14 21:23:39 +00:00
|
|
|
|
|
|
|
{% if model_switch_list.paginator %}
|
2019-01-08 23:40:48 +00:00
|
|
|
{% include 'pagination.html' with list=model_switch_list %}
|
2017-11-14 21:23:39 +00:00
|
|
|
{% endif %}
|
2018-08-05 16:48:56 +00:00
|
|
|
|