{% extends "whm/base.html" %} {% block title %}My Domain DNS{% endblock title %} {% block content %}

List of DNS Records

DNS
{% for dns in dnss %} {% empty %} {% endfor %}
Name TTL Type Record
{{ dns.name }} {{ dns.ttl }} {{ dns.type }} {% if dns.type == "MX" %} Priority: {{ dns.prio }}
Destination: {{ dns.content }} {% else %} {{ dns.content }} {% endif %}
No record found.
{% endblock content %} {% include "whm/footer.html" %}