{# T48 per-scan evals matrix page. Extends the admin layout + renders #} {# the shared `evals_matrix.html` partial. #} {% extends "admin_layout.html" %} {% block page_title %}Evals -- {{ scan_id[:8] }}{% endblock %} {% block breadcrumb %} Admin / Evals / {{ scan_id[:8] }} {% endblock %} {% block content %}

Eval matrix {{ scan_id }}

Target: {{ target_url }} {% if owner_email %} · Owner: {{ owner_email }} {% endif %}
{% include 'partials/evals_matrix.html' %} {# T48.1: shared eval-new modal. fixed-scan mode -- scan id is the #} {# page's scan_id, so the picker is hidden. Included once at the #} {# page level so it isn't duplicated if the matrix partial ever #} {# renders multiple times. #} {% with mode='fixed-scan', fixed_scan_id=scan_id %} {% include 'partials/eval_new_modal.html' %} {% endwith %}
{% endblock %}