{% extends "common/generic_modal.html" %} {% load i18n %} {% block modalbody %} {% if domain.dnsbl_status_color == "danger" %} {% for result in domain.dnsblresult_set.blacklisted %} {% endfor %}
{% trans "Provider" %} {% trans "Address" %} {% trans "Status" %}
{{ result.provider }} {{ result.mx }} {% if result.status %}{% trans "listed" %}{% else %}{% endif %}
{% else %} {% if domain.dnsbl_status_color == "success" %}
{% trans "Everything is fine, this domain is not listed." %}
{% else %}
{% trans "No information available for this domain." %}
{% endif %} {% endif %} {% endblock %}