2017-10-26 03:07:11 +00:00
|
|
|
{% comment %}
|
|
|
|
Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
|
|
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 constructor_switch_list.paginator %}
|
2019-01-08 23:40:48 +00:00
|
|
|
{% include 'pagination.html' with list=constructor_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 "Switch constructor" as tr_constructor %}
|
2019-01-08 23:40:48 +00:00
|
|
|
<th>{% include 'buttons/sort.html' with prefix='constructor-switch' col='name' text=tr_constructor %}</th>
|
2017-10-26 03:07:11 +00:00
|
|
|
<th></th>
|
|
|
|
</tr>
|
2018-07-19 10:30:15 +00:00
|
|
|
</thead>
|
|
|
|
{% for constructor_switch in constructor_switch_list %}
|
|
|
|
<tr>
|
2018-08-05 16:48:56 +00:00
|
|
|
<td>{{ constructor_switch }}</td>
|
2017-10-26 03:07:11 +00:00
|
|
|
<td class="text-right">
|
2018-07-19 10:30:15 +00:00
|
|
|
{% can_edit constructor_switch %}
|
2019-01-08 23:40:48 +00:00
|
|
|
{% include 'buttons/edit.html' with href='topologie:edit-constructor-switch' id=constructor_switch.id %}
|
2018-07-19 10:30:15 +00:00
|
|
|
{% acl_end %}
|
2018-08-05 16:48:56 +00:00
|
|
|
{% history_button constructor_switch %}
|
2018-07-19 10:30:15 +00:00
|
|
|
{% can_delete constructor_switch %}
|
2019-01-08 23:40:48 +00:00
|
|
|
{% include 'buttons/suppr.html' with href='topologie:del-constructor-switch' id=constructor_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 constructor_switch_list.paginator %}
|
2019-01-08 23:40:48 +00:00
|
|
|
{% include 'pagination.html' with list=constructor_switch_list %}
|
2017-11-14 21:23:39 +00:00
|
|
|
{% endif %}
|
2018-08-05 16:48:56 +00:00
|
|
|
|