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.
13 lines
435 B
HTML
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>
|