2016-03-30 04:13:50 +00:00
|
|
|
{% extends "registrasion/base.html" %}
|
|
|
|
{% load registrasion_tags %}
|
|
|
|
|
2018-09-29 03:50:42 +00:00
|
|
|
{% block proposals_body %}
|
2016-03-30 04:13:50 +00:00
|
|
|
|
|
|
|
<h1>Oh No!</h1>
|
|
|
|
|
|
|
|
<p>We can't produce an invoice for you because of the following errors:</p>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% for error in error_list %}
|
|
|
|
<li>{{ error.message }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<p>We can automatically try to remove products and vouchers that aren't available anymore,
|
|
|
|
or you can return to the dashboard and try to fix it yourself.</p>
|
|
|
|
|
|
|
|
<div class="form-actions">
|
2018-09-29 03:50:42 +00:00
|
|
|
<a class="btn btn-light" href="{% url "checkout" %}?fix_errors=true">Try fixing these errors</a>
|
|
|
|
<a class="btn btn-light" href="{% url "dashboard" %}">Return to dashboard</a>
|
2016-03-30 04:13:50 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|