diff --git a/templates/admin/sales.html b/templates/admin/sales.html
index 6a7b642..5759f4c 100644
--- a/templates/admin/sales.html
+++ b/templates/admin/sales.html
@@ -58,7 +58,7 @@
✅ Choice Received
-
You selected: {% if req.customer_approved == 'both' %}Both Versions{% else %}Version {{ req.customer_approved.upper() }}{% endif %}
+
You selected: {% if req.customer_approved == 'both' %}Both Versions{% else %}Version {{ (req.customer_approved or 'none').upper() }}{% endif %}
{% if req.status == 'awaiting_payment' %}
Please return to the booth to finalize payment and collect your files.
{% elif req.status == 'paid' %}
diff --git a/templates/status.html b/templates/status.html
index b673a66..0022f67 100644
--- a/templates/status.html
+++ b/templates/status.html
@@ -168,8 +168,8 @@
Request #{{ req.id }} — {{ req.name }}
Status: {{ statuses[req.status] }}
- {% if req.customer_approved != 'none' %}
-
You selected: {% if req.customer_approved == 'both' %}Both Versions{% else %}Version {{ req.customer_approved.upper() }}{% endif %}
+ {% if req.customer_approved and req.customer_approved != 'none' %}
+
You selected: {% if req.customer_approved == 'both' %}Both Versions{% else %}Version {{ (req.customer_approved or 'none').upper() }}{% endif %}
{% endif %}
{% if req.song_a_path and req.song_b_path %}