From f8f745c24396c0565aa278f55d85994d732191af Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Thu, 23 Jan 2025 20:09:45 -0600 Subject: [PATCH] fix: bugfix for view order item page template --- src/sideshow/web/templates/order-items/view.mako | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sideshow/web/templates/order-items/view.mako b/src/sideshow/web/templates/order-items/view.mako index 201540a..3cd210a 100644 --- a/src/sideshow/web/templates/order-items/view.mako +++ b/src/sideshow/web/templates/order-items/view.mako @@ -200,12 +200,12 @@ % if not item.product_id and item.local_product: - ${h.link_to(item.local_product, url('local_products.view', uuid=order.local_product.uuid))} + ${h.link_to(item.local_product, url('local_products.view', uuid=item.local_product.uuid))} % endif % if not item.product_id and item.pending_product: - ${h.link_to(item.pending_product, url('pending_products.view', uuid=order.pending_product.uuid))} + ${h.link_to(item.pending_product, url('pending_products.view', uuid=item.pending_product.uuid))} % endif