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

List of DNS Records

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