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