Files
edx-platform/lms/templates/shoppingcart/error.html
Eric Fischer 247bb50ed2 s/django.core.urlresolvers/django.urls/g
Django 1.10 deprecation fix for Hackathon XIX
Addresses PLAT-1397
2018-06-05 13:59:09 -04:00

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>