{% extends "base.html" %} {% block title %}SOC2 Compliance Report{% endblock %} {% block content %}
Pass Rate: {{ coverage.pass_pct | round(1) }}%
| Severity | Count | Percentage |
|---|---|---|
| {{ severity }} | {{ count }} | {{ ((count / report.total_findings) * 100) | round(1) if report.total_findings > 0 else 0 }}% |
| Control ID | Control Name | Status | Findings |
|---|---|---|---|
| {{ control.id }} | {{ control.name }} | {{ control.status | upper }} | {{ control.finding_count }} |
The following findings provide evidence of security control effectiveness or gaps.
{% for finding in findings %}Description: {{ finding.description }}
{% endif %} {% if finding.remediation %}