{% extends 'admin/master.html' %} {% block head_css %} {{ super() }} {% endblock %} {% block body %}
{# Search Form #}
Domain Check
Enter a domain name to check whether it can be used as a mailbox domain.
{# Result #} {% if result is not none and domain %} {% if result.can_be_used %}
Domain can be used as mailbox
{% if result.detail %} {% endif %}
Domain: {{ domain }}
Status: Allowed
Detail: {{ result.detail }}
{% else %}
Domain cannot be used as mailbox
{% if result.reason %} {% endif %} {% if result.detail %} {% endif %}
Domain: {{ domain }}
Status: Blocked
Reason: {{ result.reason.name }}{{ result.reason.value }}
Detail: {{ result.detail }}
{% endif %} {% endif %}
{% endblock %}