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

Evaluation Dashboard

{{ targets | length }} target(s)

{% for t in targets %} {% endfor %}
TargetGradeScore RemoteServerCriticalHighDiff
{{ t.name }} {% if not t.has_findings %} INCOMPLETE {% endif %} {{ t.grade }} {{ "%.1f" | format(t.combined_score) if t.combined_score is not none else "—" }} {{ "%.1f" | format(t.remote_score) if t.remote_score is not none else "—" }} {{ "%.1f" | format(t.server_score) if t.server_score is not none else "—" }} {{ t.critical_count }} {{ t.high_count }} {% if baseline_pairs.get(t.name) %} Diff {% endif %}
{% endblock %}