{% extends "oscar/checkout/layout.html" %} {% load currency_filters %} {% load i18n %} {% load image_tags %} {% block title %} {% blocktrans with number=order.number %} Order {{ number }}: confirmation {% endblocktrans %} | {{ block.super }} {% endblock title %} {% block checkout_nav %} {% include 'oscar/checkout/nav.html' with step=5 %} {% endblock %} {% block checkout_title %} {% blocktrans with number=order.number %} Order {{ number }}: confirmation {% endblocktrans %} {% endblock %} {% block content %}

{% blocktrans with number=order.number %} Your order has been placed and a confirmation email has been sent - your order number is {{ number }}. {% endblocktrans %} {% trans "Please make a note of this reference or print this page and quote it in any communication with us regarding your order." %}

{% block shipping_info %}

{% trans "Shipping" %}

{% trans "Address" %}

{% if order.shipping_address %}
{% if order.shipping_address.company %}{{ order.shipping_address.company }}
{% endif %} {% if order.shipping_address.cost_center %}Kostenstelle: {{ order.shipping_address.cost_center }}
{% endif %} {% for field in order.shipping_address.active_address_fields %} {{ field }}
{% endfor %}
{% if order.shipping_address.phone_number %}

{% trans "Contact" %}

{% trans "Phone" %}: {{ order.shipping_address.phone_number }} {% if order.guest_email %}
E-Mail: {{ order.guest_email }} {% else %}
E-Mail: {{ order.user.email }} {% endif %}

{% endif %} {% if order.shipping_address.notes %}

{% trans "Instructions" %}

{{ order.shipping_address.notes|linebreaks }}

{% endif %} {% else %}

{% trans "No shipping address required." %}

{% endif %}

{% trans "Shipping method" %}

{{ order.shipping_method }}

{% endblock %}
{% block payment_info %}

{% trans "Payment" %}

{% trans "Payment" %}

{% for source in order.sources.all %}

{{ source.source_type.name }} {% if source.amount_allocated %} {% if source.reference %} {% blocktrans with amount=source.amount_allocated|currency:source.currency type=source.source_type.name reference=source.reference %} Allocation of {{ amount }} from type {{ type }} (reference: {{ reference }}) {% endblocktrans %} {% else %} {% blocktrans with amount=source.amount_allocated|currency:source.currency type=source.source_type.name %} Allocation of {{ amount }} from type {{ type }} {% endblocktrans %} {% endif %} {% else %} {{ type }} {% endif %}

{% empty %}

{% trans "No payment was required for this order." %}

{% endfor %} {% if order.billing_address %}

{% trans "Billing address" %}

{% if order.billing_address.company %} {{ order.billing_address.company }}
{% endif %} {% for field in order.billing_address.active_address_fields %} {{ field }}
{% endfor %}
{% endif %}
{% endblock %}
{% block order_contents %}

{% trans "Order contents" %}

{% include 'oscar/basket/partials/basket_line_head.html' %} {% for line in order.lines.all %} {% include 'oscar/basket/partials/basket_line.html' %} {% endfor %} {% block basket_totals %} {% if not hide_price %}
 

{% trans 'Totals' %}

{% include 'oscar/order/partials/basket_totals.html' %}
{% endif %} {% endblock basket_totals %} {% endblock order_contents %} {% block order_tracking %} {% if not order.user %}

{% trans "Tracking your order" %}

{% trans "You can track the status of your order" %} {% trans "View order status" %}.

{% endif %} {% endblock %} {% block order_actions %}
{% endblock order_actions %} {% endblock content %} {% block tracking %} {% if send_analytics_event %} {% include "oscar/partials/google_analytics_transaction.html" %} {% endif %} {% endblock %}