{% import "macros.html" as macros %} {% extends "bases/app.html" %} {% block title %}Records - {{ current_zone }} - {% endblock title %} {% block main %}

Zone {{ current_zone }} records

Records

{% for group in records.records %}

{{ group.owner }}

Add record
{% if group.web %}

Web

    {% if group.web.addresses %} {{ macros::rrset( rtype=group.web.addresses.rtype, ttl=group.web.addresses.ttl, data=group.web.addresses.data, zone=current_zone) }} {% endif %}
{% endif %} {% if group.mail %}

E-mails

    {% if group.mail.servers %} {{ macros::rrset( rtype=group.mail.servers.rtype, ttl=group.mail.servers.ttl, data=group.mail.servers.data, zone=current_zone) }} {% endif %} {% if group.mail.spf %} {{ macros::rrset( rtype=group.mail.spf.rtype, ttl=group.mail.spf.ttl, data=group.mail.spf.data, zone=current_zone) }} {% endif %}
{% endif %} {% if group.general_records %}

General

    {% for rrset in group.general_records %} {{ macros::rrset( rtype=rrset.rtype, ttl=rrset.ttl, data=rrset.data, zone=current_zone) }} {% endfor %}
{% endif %}
{% endfor %}

Aliases

{% endblock main %}