From 1fcca3a9424ebbdd53fe62fb049e072e898416a3 Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Thu, 15 Jan 2015 11:50:15 -0500 Subject: [PATCH] add back inclusion of the receipt_custom_pane.html at the bottom of the receipt page --- lms/templates/shoppingcart/receipt.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lms/templates/shoppingcart/receipt.html b/lms/templates/shoppingcart/receipt.html index f9b0d700c5..f576a07e94 100644 --- a/lms/templates/shoppingcart/receipt.html +++ b/lms/templates/shoppingcart/receipt.html @@ -5,6 +5,7 @@ from django.utils.translation import ungettext from django.core.urlresolvers import reverse from courseware.courses import course_image_url, get_course_about_section, get_course_by_id %> +<%! from microsite_configuration import microsite %> <%block name="billing_details_highlight"> % if order_type == 'business': @@ -371,6 +372,8 @@ from courseware.courses import course_image_url, get_course_about_section, get_c ${_("Total")}: ${currency_symbol}${"{0:0.2f}".format(order.total_cost)} ${currency.upper()} + ## Allow for a microsite to be able to insert additional text at the bottom of the page + <%include file="${microsite.get_template_path('receipt_custom_pane.html')}" />