{% extends "base.html" %} {% block content %}

Score — {{ target.name }}

{{ scores.grade if scores else "—" }}
Grade
{{ "%.1f" | format(scores.combined_score) if scores and scores.combined_score is not none else "—" }}
Combined
{{ "%.1f" | format(scores.remote_score) if scores and scores.remote_score is not none else "—" }}
Remote
{{ "%.1f" | format(scores.server_score) if scores and scores.server_score is not none else "—" }}
Server
{{ "%.0f%%" | format((scores.verdict_coverage or 0) * 100) if scores else "—" }}
Coverage
{{ "%.0f%%" | format((scores.error_rate or 0) * 100) if scores else "—" }}
Errors
Filter by severity: {% for sev in ["critical", "high", "medium", "low", "info"] %}
{% endfor %}
{% for f in findings %} {% else %} {% endfor %}
CheckSeverityTitle DescriptionRemediation
{{ f.check }} {{ f.severity }} {{ f.title }} {{ f.description }} {{ f.remediation }}
No findings

{{ findings | length }} finding(s)

{% if report_links %}
Reports
{% endif %} {% endblock %} {% block scripts %} {% endblock %}