{# Filter bar #}
{{ passing }} pass · {{ failing }} fail · {{ manual }} manual · {{ total_controls }} total
{# Controls table #} {% if controls %}
{% for control in controls %} {% endfor %}
Control ID Title Framework Status Resources Severity Cross-mapped
{{ control.control_id }} {{ control.control_title }} {{ control.framework }} {% if control.status == "pass" %} PASS {% elif control.status == "fail" %} FAIL {% else %} MANUAL {% endif %} {{ control.resource_count - control.failing_resources }}/{{ control.resource_count }} {% if control.severity == "critical" %} Critical {% elif control.severity == "high" %} High {% elif control.severity == "medium" %} Medium {% elif control.severity == "low" %} Low {% endif %} {% for cm in control.cross_mapped[:3] %} {{ cm }} {% endfor %} {% if control.cross_mapped | length > 3 %} +{{ control.cross_mapped | length - 3 }} {% endif %}
{% if page < total_pages %}
{% endif %} {% else %}
No controls match the current filters.
{% endif %}