{% extends "emails/_base.html" %} {% block body %}

Awaiting verification

A new print has been submitted and has just passed the automated checks. It is waiting for a staff review before it can enter the print queue.

{# Pill colour comes from `Submission.STATUS_EMAIL_COLORS[VERIFYING]` -- violet, same as the dashboard chip and the user-facing verifying email. #}
{{ submission.get_status_display }}
Codename {{ submission.slug }}
Source {{ submission.source_label }}
Submitter {% if submission.submitted_by_id %} {{ submission.submitted_by.email }} (signed in) {% else %} {{ submission.guest_email }} (guest, email confirmed) {% endif %}
Filament {% if submission.requested_filament %}{{ submission.requested_filament.display_label }}{% else %}No preference{% endif %}
{% if submission.notes_for_op %} {# Private user-to-operator notes. Surfaced here because the recipient is staff -- never echoed on the public detail page (plan.md ยง5). #}

Notes from the submitter

{{ submission.notes_for_op }}

{% endif %}
Review in admin

Public detail page: {{ detail_url }}

{% endblock %}