{% 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 %}

{% trans "List of extensions" %}

{% can_create Extension %} {% trans "Add an extension" %} {% acl_end %} {% trans "Delete one or several extensions" %} {% include 'machines/aff_extension.html' with extension_list=extension_list %}

{% trans "List of SOA records" %}

{% can_create SOA %} {% trans "Add an SOA record" %} {% acl_end %} {% trans "Delete one or several SOA records" %} {% include 'machines/aff_soa.html' with soa_list=soa_list %}

{% trans "List of MX records" %}

{% can_create Mx %} {% trans "Add an MX record" %} {% acl_end %} {% trans "Delete one or several MX records" %} {% include 'machines/aff_mx.html' with mx_list=mx_list %}

{% trans "List of NS records" %}

{% can_create Ns %} {% trans "Add an NS record" %} {% acl_end %} {% trans "Delete one or several NS records" %} {% include 'machines/aff_ns.html' with ns_list=ns_list %}

{% trans "List of TXT records" %}

{% can_create Txt %} {% trans "Add a TXT record" %} {% acl_end %} {% trans "Delete one or several TXT records" %} {% include 'machines/aff_txt.html' with txt_list=txt_list %}

{% trans "List of DNAME records" %}

{% can_create DName %} {% trans "Add a DNAME record" %} {% acl_end %} {% trans "Delete one or several DNAME records" %} {% include 'machines/aff_dname.html' with dname_list=dname_list %}

{% trans "List of SRV records" %}

{% can_create Srv %} {% trans "Add an SRV record" %} {% acl_end %} {% trans "Delete one or several SRV records" %} {% include 'machines/aff_srv.html' with srv_list=srv_list %} {% endblock %}