mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-09 11:26:27 +00:00
108 lines
4.7 KiB
HTML
108 lines
4.7 KiB
HTML
{% extends 'machines/sidebar.html' %}
|
|
{% 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 bootstrap3 %}
|
|
{% load acl %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Machines" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>{% trans "List of extensions" %}</h2>
|
|
{% can_create Extension %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:add-extension' %}">
|
|
<i class="fa fa-plus"></i> {% trans "Add an extension" %}</a>
|
|
{% acl_end %}
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'machines:del-extension' %}">
|
|
<i class="fa fa-trash"></i> {% trans "Delete one or several extensions" %}
|
|
</a>
|
|
{% include 'machines/aff_extension.html' with extension_list=extension_list %}
|
|
|
|
<h2>{% trans "List of SOA records" %}</h2>
|
|
{% can_create SOA %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:add-soa' %}">
|
|
<i class="fa fa-plus"></i> {% trans "Add an SOA record" %}
|
|
</a>
|
|
{% acl_end %}
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'machines:del-soa' %}">
|
|
<i class="fa fa-trash"></i> {% trans "Delete one or several SOA records" %}
|
|
</a>
|
|
{% include 'machines/aff_soa.html' with soa_list=soa_list %}
|
|
|
|
<h2>{% trans "List of MX records" %}</h2>
|
|
{% can_create Mx %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:add-mx' %}">
|
|
<i class="fa fa-plus"></i> {% trans "Add an MX record" %}
|
|
</a>
|
|
{% acl_end %}
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'machines:del-mx' %}">
|
|
<i class="fa fa-trash"></i> {% trans "Delete one or several MX records" %}
|
|
</a>
|
|
{% include 'machines/aff_mx.html' with mx_list=mx_list %}
|
|
|
|
<h2>{% trans "List of NS records" %}</h2>
|
|
{% can_create Ns %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:add-ns' %}">
|
|
<i class="fa fa-plus"></i> {% trans "Add an NS record" %}
|
|
</a>
|
|
{% acl_end %}
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'machines:del-ns' %}">
|
|
<i class="fa fa-trash"></i> {% trans "Delete one or several NS records" %}
|
|
</a>
|
|
{% include 'machines/aff_ns.html' with ns_list=ns_list %}
|
|
|
|
<h2>{% trans "List of TXT records" %}</h2>
|
|
{% can_create Txt %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:add-txt' %}">
|
|
<i class="fa fa-plus"></i> {% trans "Add a TXT record" %}
|
|
</a>
|
|
{% acl_end %}
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'machines:del-txt' %}">
|
|
<i class="fa fa-trash"></i> {% trans "Delete one or several TXT records" %}
|
|
</a>
|
|
{% include 'machines/aff_txt.html' with txt_list=txt_list %}
|
|
|
|
<h2>{% trans "List of DNAME records" %}</h2>
|
|
{% can_create DName %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:add-dname' %}">
|
|
<i class="fa fa-plus"></i> {% trans "Add a DNAME record" %}
|
|
</a>
|
|
{% acl_end %}
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'machines:del-dname' %}">
|
|
<i class="fa fa-trash"></i> {% trans "Delete one or several DNAME records" %}
|
|
</a>
|
|
{% include 'machines/aff_dname.html' with dname_list=dname_list %}
|
|
|
|
<h2>{% trans "List of SRV records" %}</h2>
|
|
{% can_create Srv %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:add-srv' %}">
|
|
<i class="fa fa-plus"></i> {% trans "Add an SRV record" %}
|
|
</a>
|
|
{% acl_end %}
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'machines:del-srv' %}">
|
|
<i class="fa fa-trash"></i> {% trans "Delete one or several SRV records" %}
|
|
</a>
|
|
{% include 'machines/aff_srv.html' with srv_list=srv_list %}
|
|
{% endblock %}
|