2017-11-16 01:33:57 +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-11-16 01:33:57 +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-11-16 01:33:57 +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 23:05:31 +00:00
|
|
|
{% load acl %}
|
2018-07-19 10:30:15 +00:00
|
|
|
{% load logs_extra %}
|
2018-08-05 16:48:22 +00:00
|
|
|
{% load i18n %}
|
2017-12-27 23:05:31 +00:00
|
|
|
|
2018-07-19 10:30:15 +00:00
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
2018-09-24 17:31:12 +00:00
|
|
|
<tr>
|
|
|
|
<th>{% trans "Service" %}</th>
|
|
|
|
<th>{% trans "Protocol" %}</th>
|
|
|
|
<th>{% trans "Extension" %}</th>
|
|
|
|
<th>{% trans "TTL" %}</th>
|
|
|
|
<th>{% trans "Priority" %}</th>
|
|
|
|
<th>{% trans "Weight" %}</th>
|
|
|
|
<th>{% trans "Port" %}</th>
|
|
|
|
<th>{% trans "Target" %}</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
2018-07-19 10:30:15 +00:00
|
|
|
</thead>
|
|
|
|
{% for srv in srv_list %}
|
2018-08-05 16:48:22 +00:00
|
|
|
<tr>
|
|
|
|
<td>{{ srv.service }}</td>
|
|
|
|
<td>{{ srv.protocole }}</td>
|
|
|
|
<td>{{ srv.extension }}</td>
|
|
|
|
<td>{{ srv.ttl }}</td>
|
|
|
|
<td>{{ srv.priority }}</td>
|
|
|
|
<td>{{ srv.weight }}</td>
|
|
|
|
<td>{{ srv.port }}</td>
|
|
|
|
<td>{{ srv.target }}</td>
|
|
|
|
<td class="text-right">
|
|
|
|
{% can_edit srv %}
|
2019-01-08 23:39:31 +00:00
|
|
|
{% include 'buttons/edit.html' with href='machines:edit-srv' id=srv.id %}
|
2018-08-05 16:48:22 +00:00
|
|
|
{% acl_end %}
|
|
|
|
{% history_button srv %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
2018-07-19 10:30:15 +00:00
|
|
|
{% endfor %}
|
|
|
|
</table>
|