2017-10-19 23:52:38 +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-19 23:52:38 +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-19 23:52:38 +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 "Name" %}</th>
|
|
|
|
<th>{% trans "Mail" %}</th>
|
|
|
|
<th>{% trans "Refresh" %}</th>
|
|
|
|
<th>{% trans "Retry" %}</th>
|
|
|
|
<th>{% trans "Expire" %}</th>
|
|
|
|
<th>{% trans "TTL" %}</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
2018-07-19 10:30:15 +00:00
|
|
|
</thead>
|
|
|
|
{% for soa in soa_list %}
|
2018-08-05 16:48:22 +00:00
|
|
|
<tr>
|
|
|
|
<td>{{ soa.name }}</td>
|
|
|
|
<td>{{ soa.mail }}</td>
|
|
|
|
<td>{{ soa.refresh }}</td>
|
|
|
|
<td>{{ soa.retry }}</td>
|
|
|
|
<td>{{ soa.expire }}</td>
|
|
|
|
<td>{{ soa.ttl }}</td>
|
|
|
|
<td class="text-right">
|
|
|
|
{% can_edit soa %}
|
2019-01-08 23:39:31 +00:00
|
|
|
{% include 'buttons/edit.html' with href='machines:edit-soa' id=soa.id %}
|
2018-08-05 16:48:22 +00:00
|
|
|
{% acl_end %}
|
|
|
|
{% history_button soa %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
2018-07-19 10:30:15 +00:00
|
|
|
{% endfor %}
|
|
|
|
</table>
|