{# Logo #}
ComplyForm
Shared Scan Report
{% if password_required %} {# Password form #}
Password Required
{% if password_error %}
{{ password_error }}
{% endif %}
View Scan
{% else %} {# Scan header #}
{{ project_label }}
{{ cloud }}
Scanned {{ scanned_at }}
{{ frameworks | join(", ") }}
{# Score panel #}
{{ "%.1f"|format(score) }}%
Compliance Score
{% for sev_name, sev_var in [("Critical", "--cf-critical"), ("High", "--cf-high"), ("Medium", "--cf-medium"), ("Low", "--cf-low")] %}
{{ severity_counts.get(sev_name|lower, 0) }}
{{ sev_name }}
{% endfor %}
{# Findings #} {% if findings %}
Findings ({{ findings | length }})
{% for finding in findings %}
{% if finding.severity == "critical" %}
CRITICAL
{% elif finding.severity == "high" %}
HIGH
{% elif finding.severity == "medium" %}
MEDIUM
{% elif finding.severity == "low" %}
LOW
{% endif %}
{{ finding.control_id }} — {{ finding.control_title }}
{{ finding.resource }}
{% endfor %}
{% else %}
No findings in this scan.
{% endif %} {% endif %} {# Footer #}
Powered by
ComplyForm
— Cloud compliance, automated.