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

Evaluation Dashboard

{{ targets | length }} target(s)

{% for t in targets %} {% endfor %}
TargetGradeScore RemoteServerCriticalHigh
{{ 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 }}
{% endblock %}