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')}" />