Files
edx-platform/lms/templates/commerce/checkout_cancel.html
Clinton Blackburn 0f84749d4f Added Payment Cancellation Page
This commit creates a new page intended only for use when the user cancels payment. The previous implementation relied on the CyberSource callback page, which is not useful for orders placed with the E-Commerce Service.
2015-04-21 16:43:15 -04:00

13 lines
435 B
HTML

<%! from django.utils.translation import ugettext as _ %>
<%inherit file="../main.html" />
<%block name="pagetitle">${_("Checkout Cancelled")}</%block>
<section class="container">
<h1>${_("Checkout Cancelled")}</h1>
${ _(u"Your transaction has been cancelled. If you feel an error has occurred, contact {email}.").format(
email="<a href=\"mailto:{email}\">{email}</a>".format(email=payment_support_email)) }
</section>