12 lines
307 B
HTML
12 lines
307 B
HTML
<%inherit file="../main.html" />
|
|
<%!
|
|
from django.utils.translation import ugettext as _
|
|
from django.urls import reverse
|
|
%>
|
|
<%block name="pagetitle">${_("Payment Error")}</%block>
|
|
|
|
<section class="container">
|
|
<p><h1>${_("There was an error processing your order!")}</h1></p>
|
|
${error_html}
|
|
</section>
|