From 54b70532920995fc40b6c0d87d8b9268de6b2aa7 Mon Sep 17 00:00:00 2001 From: Nathan Chapman Date: Sat, 23 Mar 2024 14:53:14 -0600 Subject: [PATCH] Add subtitle to order line item --- dashboard/templates/dashboard/order/detail.html | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/dashboard/templates/dashboard/order/detail.html b/dashboard/templates/dashboard/order/detail.html index b95f6a9..9563824 100644 --- a/dashboard/templates/dashboard/order/detail.html +++ b/dashboard/templates/dashboard/order/detail.html @@ -73,7 +73,11 @@ {% else %} {{product.get_first_img.image}} {% endif %} -
{{line.variant}}
{{line.customer_note}}
+
+ {{line.variant}}
+ {{ line.variant.product.subtitle }}
+ {{line.customer_note}} +
{{product.sku}} @@ -90,7 +94,11 @@ {% else %} {{product.get_first_img.image}} {% endif %} -
{{line.product}}
{{line.customer_note}}
+
+ {{line.product}}
+ {{ line.product.subtitle }}
+ {{line.customer_note}} +
{{product.sku}}