{% if audit_scan %}
Transport: {{ audit_scan.transport }}
Server: {{ audit_scan.server_name or '—' }}
{% if audit_scan.server_version %}
Version: {{ audit_scan.server_version }}
{% endif %} {% if audit_scan.scan_duration_seconds %}
Duration: {{ '%.1f' | format(audit_scan.scan_duration_seconds) }}s
{% endif %}
{% endif %} {% if child_by_module.get('audit') and child_by_module['audit'].status.value in (3, 6) %}
Audit scanner {{ 'failed' if child_by_module['audit'].status.value == 3 else 'partially completed' }}. Some checks may not have executed.
{% endif %} {% if audit_findings %} {% for f in audit_findings %} {% if audit_evidence_map.get(f.id) %} {% endif %} {% endfor %}
Severity Title Description Frameworks Source
{{ f.severity.name | capitalize }} {{ f.title }} {{ f.description or '' }} {% if f.framework_ids %}
{% for fw, ids in f.framework_ids.items() %} {% if ids is string %} {{ ids }} {% else %} {% for fid in ids %} {{ fid }} {% endfor %} {% endif %} {% endfor %}
{% endif %} {% if previously_seen and (f.category, f.title) in previously_seen %} Seen Before {% endif %}
{{ f.source_ref or '' }}
Mitigation
{% else %}

No audit findings.

{% endif %}