{% extends "network/base.html" %} {% block title %}Compliance Audit — {{ topology.name }}{% endblock %} {% block content %}

Compliance Profile

Active Regimes:
{% for rid, rcfg in all_regimes.items() %} {% endfor %}
{% if audits %}

Audit History

{% for a in audits %} {% endfor %}
DateRegimesPassedFailedScore
{{ (a.ran_at or '')[:16] }} {{ a.check_type }} {{ a.passed }} {{ a.failed }} {{ (a.passed / (a.passed + a.failed) * 100 if (a.passed + a.failed) > 0 else 0)|round(0)|int }}%
{% endif %} {% if open_findings %}

Open Findings ({{ open_findings|length }})

{% for f in open_findings %} {% endfor %}
RuleSeverityTitleAffectedRegime(s)Actions
{{ f.rule_id }} {{ f.severity }} {{ f.title }} {{ f.affected_entity or '—' }} {{ f.regime }} {% if f.fix_action %}{% endif %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}