{% extends "common/generic_modal.html" %} {% load i18n %} {% block modalbody %} {% for mx in domain.mxrecord_set.all %} {% empty %} {% endfor %}
{% trans "Name" %} {% trans "Address" %} {% trans "Updated" %}
{{ mx.name }} {% if mx.is_managed %} {% if not mx.managed %} {{ mx.address }} {% else %} {{ mx.address }} {% endif %} {% else %} {{ mx.address }} {% endif %} {{ mx.updated|date:"SHORT_DATETIME_FORMAT" }}
{% trans "No MX record found for this domain." %}
{% endblock %}