{% extends 'core/base.html' %} {% load i18n material_form %} {% block page_title %} {{ object.title }} {% endblock %} {% block browser_title %} {{ object.title }} {% endblock %} {% block content %}
{% include "order/breadcrumbs.html" with step=3 %}
{% csrf_token %}
{% trans "Personal data" %}
{% if order.processing_option.address_necessary %} {% endif %}
{% trans "Full name" %} {{ order.full_name }}
{% trans "Email" %} {{ order.email }}
{% trans "Shipping address" %} {{ order.shipping_full_name }}
{{ order.second_address_row }}
{{ order.street }} {{ order.housenumber }}
{{ order.plz }} {{ order.place }}
{% trans "Items" %}
{% for item in order.items.all %} {% endfor %}
{% trans "Count" %} {% trans "Item" %} {% trans "Price" %} {% trans "Sum" %}
{{ item.count }} {{ item.item.name }} {{ item.item.price|floatformat:"2" }} {{ item.total|floatformat:"2" }}
+ {{ order.processing_option.name }} {{ order.processing_price|floatformat:"2" }} €
{% trans "Total" %} {{ order.total|floatformat:"2" }}
{% trans "Notes to your order" %}
{% form form=notes_form %}{% endform %}
{% blocktrans %} Please check the details of your order and send it by clicking "Confirm order". {% endblocktrans %}

{% trans "Back" %}

{{ object.help_text|safe }}
{% endblock %}