This is part 2 of a multiple PR to escape edx-platform templates to prevent xss attack. PROD-465
16 lines
531 B
HTML
16 lines
531 B
HTML
<%page expression_filter="h"/>
|
|
<%! from django.utils.translation import ugettext as _
|
|
from openedx.core.djangolib.markup import HTML, Text
|
|
%>
|
|
|
|
<%inherit file="../main.html" />
|
|
|
|
<%block name="pagetitle">${_("Checkout Cancelled")}</%block>
|
|
|
|
|
|
<section class="container">
|
|
<h1>${_("Checkout Cancelled")}</h1>
|
|
${ Text(_(u"Your transaction has been cancelled. If you feel an error has occurred, contact {email}.")).format(
|
|
email=HTML("<a href=\"mailto:{email}\">{email}</a>").format(email=payment_support_email)) }
|
|
</section>
|