8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-10 08:13:12 +00:00
re2o/machines/templates/machines/aff_vlan.html

56 lines
1.9 KiB
HTML
Raw Normal View History

{% 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
Copyright © 2017 Lara Kermarec
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 %}
{% load acl %}
{% load logs_extra %}
2018-08-05 16:48:22 +00:00
{% load i18n %}
<div class="table-responsive">
<table class="table table-striped">
<thead>
2018-09-24 17:31:12 +00:00
<tr>
<th>{% trans "ID" %}</th>
<th>{% trans "Name" %}</th>
<th>{% trans "Comment" %}</th>
<th>{% trans "IP ranges" %}</th>
<th></th>
</tr>
</thead>
{% for vlan in vlan_list %}
2018-08-05 16:48:22 +00:00
<tr>
<td>{{ vlan.vlan_id }}</td>
2018-09-24 17:31:12 +00:00
<td>{{ vlan.name }}</td>
2018-08-05 16:48:22 +00:00
<td>{{ vlan.comment }}</td>
2018-09-24 17:31:12 +00:00
<td>{% for range in vlan.iptype_set.all %}{{ range }}, {% endfor %}</td>
2018-08-05 16:48:22 +00:00
<td class="text-right">
{% can_edit vlan %}
2019-01-08 23:39:31 +00:00
{% include 'buttons/edit.html' with href='machines:edit-vlan' id=vlan.id %}
2018-08-05 16:48:22 +00:00
{% acl_end %}
{% history_button vlan %}
</td>
</tr>
{% endfor %}
</table>
</div>