{% extends 'admin/master.html' %}
{% block head_css %}
{{ super() }}
{% endblock %}
{% block body %}
{# Search Form #}
{# Result #}
{% if result is not none and domain %}
{% if result.can_be_used %}
| Domain: |
{{ domain }} |
| Status: |
Allowed |
{% if result.detail %}
| Detail: |
{{ result.detail }} |
{% endif %}
{% else %}
| Domain: |
{{ domain }} |
| Status: |
Blocked |
{% if result.reason %}
| Reason: |
{{ result.reason.name }}{{ result.reason.value }} |
{% endif %}
{% if result.detail %}
| Detail: |
{{ result.detail }} |
{% endif %}
{% endif %}
{% endif %}
{% endblock %}