From 8491927ef7c49b4187eac9679e675bb8c646d300 Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Mon, 9 Sep 2013 11:14:28 -0400 Subject: [PATCH] Default empty course_name just to unbreak the test. Need to actually extract out verification-specifics from the receipt templates, but design is working on them right now. --- lms/djangoapps/shoppingcart/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lms/djangoapps/shoppingcart/views.py b/lms/djangoapps/shoppingcart/views.py index ef7eba83a9..f9a9216b3b 100644 --- a/lms/djangoapps/shoppingcart/views.py +++ b/lms/djangoapps/shoppingcart/views.py @@ -108,7 +108,8 @@ def show_receipt(request, ordernum): context = { 'order': order, 'order_items': order_items, - 'any_refunds': any_refunds + 'any_refunds': any_refunds, + 'course_name' : "", } if order_items.count() == 1: