{% extends "network/base.html" %} {% block title %}Compliance Audit — {{ topology.name }}{% endblock %} {% block content %}
{{ topology.name }} — {{ profile.classification }} / {{ profile.environment }}
| Date | Regimes | Passed | Failed | Score |
|---|---|---|---|---|
| {{ (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 }}% |
| Rule | Severity | Title | Affected | Regime(s) | Actions |
|---|---|---|---|---|---|
| {{ f.rule_id }} | {{ f.severity }} | {{ f.title }} | {{ f.affected_entity or '—' }} | {{ f.regime }} | {% if f.fix_action %}{% endif %} |