{% extends "oscar/checkout/checkout.html" %} {% load i18n %} {% block title %} {% trans "Shipping address" %} | {{ block.super }} {% endblock %} {% block checkout_nav %} {% include 'oscar/checkout/nav.html' with step=1 %} {% endblock %} {% block checkout_title %}{% trans "Shipping address" %}{% endblock %} {% block order_contents %}{% endblock %} {% block shipping_address %}

{% trans "Where should we ship to?" %}

{% if user.is_authenticated %} {% if addresses %}
{% csrf_token %} {% for field in selector_form %}

{{ field.label }}

{{ field }}
{% endfor %}
{% endif %} {% endif %} {% block new_address_form %} {% if not user.hide_price %}
Adressen bearbeiten Adresse hinzufügen
{% csrf_token %} {% include "oscar/partials/form_fields.html" with form=form style='horizontal' %}
{% trans "or" %} {% trans "return to basket" %}
{% endif %} {% endblock %}
{% endblock shipping_address %} {% block shipping_method %}{% endblock %} {% block payment_method %}{% endblock %}