{% extends 'generic/object.html' %} {% block content %}
Policy Analysis {{ object_analysis.total_rules }} rules
{% if object_analysis %}
{% for area in object_analysis.areas %}
{{ area.label }} — Top 10 von {{ area.total_objects }}
{% for obj in area.objects %} {% empty %} {% endfor %}
ObjectType# Rules
{{ obj.name }} {{ obj.type_name }} {{ obj.count }}
{% endfor %}
{% else %}
No rules found.
{% endif %}
Zone Matrix Rows = Source · Columns = Destination · Click a cell to open Security Rules
Permit Deny Log Count N = multiple rules
{% if all_zones %}
Filter Zones {% if selected_src_pks or selected_dst_pks %} active {% endif %}
{% if selected_src_pks or selected_dst_pks %} Reset {% endif %} Ctrl/Cmd + click
{% endif %}
{% if matrix_rows %}
{% for zone in dst_zones %} {% endfor %} {% for row in matrix_rows %} {% for cell in row.cells %} {% if cell.type == "empty" %} {% elif cell.type == "single" %} {% else %} {% endif %} {% endfor %} {% endfor %}
Destination → ↓ Source
{% if zone.pk %}{{ zone.name }}{% else %}{{ zone.name }}{% endif %}
{% if row.source_zone.pk %}{{ row.source_zone.name }}{% else %}{{ row.source_zone.name }}{% endif %} + {{ cell.label }} {{ cell.count }}
{% else %}

No zones match the current filter.

{% endif %}
{# end tab-pane matrix #} {# end tab-content #} {% endblock %}