{% extends "base.html" %} {% block content %}

policy

last update: {{policy.updatedAt | htime_dt }}

source
destination
{% for acl in policy.policy['acls'] %}
{{ ','.join(acl['src']) }}
{{ ',
'.join(acl['dst']) | safe }}
{% endfor %}
{% for group,users in policy.policy['groups'].items() %}
{{ group }}
{{ ", ".join(users) }}
{% endfor %}
{% for host, value in policy.policy['hosts'].items() %}
{{ host }}
{{ value }}
{% endfor %}
{% endblock %}