{% extends "admin/base_site.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}

Policy set: {{ policy_set.name }}

{% csrf_token %} {{ form.as_p }}
{% if result %} {% if result.error %}

{{ result.error }}

{% endif %}

allow = {{ result.allow|default_if_none:"undefined" }}

{% for entry in result.policies %}

{{ entry.policy.name }} ({{ entry.policy.filename }})

{% for line in entry.lines %}
{{ line.number }}{{ line.text }}
{% for message in line.prints %}
🖨{{ message }}
{% endfor %} {% endfor %}
{% endfor %}
Full output document (data.policies)
{{ result.tree_json }}
Input document
{{ result.input_json }}

Browse prefilter

Status: {{ result.prefilter.status }} {% if result.prefilter.detail %} — {{ result.prefilter.detail }}{% endif %} {% if result.prefilter.object_included is not None and result.prefilter.status == "conditional" %} {% if result.prefilter.object_included %}· object included by the prefilter {% else %}· object excluded by the prefilter{% endif %} {% endif %}

{% if result.prefilter.ucast_json %}
Residual condition (UCAST)
{{ result.prefilter.ucast_json }}
{% endif %} {% endif %}
{% endblock %}