{% extends "base.html" %} {% load i18n %} {% load gross net tax from prices_i18n %} {% block title %}{% trans "Checkout" %} — {{ block.super }}{% endblock %} {% block outerbreadcrumb %}{% endblock %} {% block header %} {% endblock %} {% block footer %} {% endblock %} {% block content %} {% if not user.is_authenticated %}

{% trans "Already have an account?" %} {% trans "Sign in" %}

{% endif %} {% block step_info %}{% endblock %}
{% block steps_menu %} {% endblock steps_menu %} {% block forms %}{% endblock %}
{% with total=checkout.get_total %} {% for delivery, delivery_cost, total_with_delivery in checkout.deliveries %} {% for item in delivery %} {% endfor %} {% endfor %} {% include 'checkout/snippets/voucher-form.html' with discount=checkout.discount form=voucher_form %} {% if total.tax or True %} {% endif %}
{{ item.product.product }}{% if item.quantity != 1 %} ×{{ item.quantity }}{% endif %}
{{ item.product }}
{% net item.get_total %}
{% trans "Subtotal" %} {% net checkout.get_subtotal %}
{% trans "Shipping" %} {% if checkout.shipping_method %} {% net checkout.get_total_shipping %} {% else %} — {% endif %}
{% trans "Taxes" %} {% tax total %}
{% trans "Total" %} {% gross total %}
{% endwith %}
{% endblock content %}