2016-05-19 09:19:51 +00:00
|
|
|
{% extends 'shop_base.html' %}
|
2016-05-16 17:31:14 +00:00
|
|
|
{% load bootstrap3 %}
|
|
|
|
|
2016-05-19 09:19:51 +00:00
|
|
|
{% block shop_content %}
|
2016-05-16 17:31:14 +00:00
|
|
|
<h2>Thank you for your payment!</h2>
|
|
|
|
<p class="lead">
|
|
|
|
{% if order.paid %}
|
|
|
|
Thank you for your payment. Your order has been marked as paid.
|
|
|
|
{% else %}
|
|
|
|
Thank you for your payment. Your order will be marked as paid as soon as we register a callback from our payment provider.</p>
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
{% endblock %}
|