{% extends base_template|default:"base.html" %} {% load i18n plata_tags %} {% block title %}{% trans "Order successful" %} - {{ block.super }}{% endblock %} {% block content %} {% if not order.balance_remaining %}

{% trans "Thank you for shopping with us!" %}

{# TODO this isn't correct for cash on delivery #} {% else %} {% if order.paid %}

{% trans "Order has been partially paid." %}

{% else %}

{% trans "Order has been confirmed." %}

{% endif %}

{% trans "As soon as we receive a confirmation from the payment provider, you'll be sent a confirmation e-mail." %}

{% endif %} {% include "plata/_order_overview.html" %} {% endblock %}