Files
edx-platform/lms/templates/commerce/checkout_error.html
Tasawer 06a91979e1 Added checkout error page.
ECOM-2516
2015-11-05 07:26:13 +00:00

13 lines
497 B
HTML

<%! from django.utils.translation import ugettext as _ %>
<%inherit file="../main.html" />
<%block name="pagetitle">${_("Checkout Error")}</%block>
<section class="container">
<h1>${_("Checkout Error")}</h1>
${ _(u"An error has occurred with your payment. <b>You have not been charged.</b> Please try to submit your payment again. If this problem persists, contact {email}.").format(
email="<a href=\"mailto:{email}\">{email}</a>".format(email=payment_support_email)) }
</section>