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

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

{% if request.user.is_authenticated %} {% if addresses %}

An address from your addressbook?

{% if not forloop.last %}

{% trans "Or a new address?" %}

{% endif %} {% endif %}
{% csrf_token %} {% include "partials/form_fields.html" with form=form %}
{% trans "or" %} {% trans "return to basket" %}
{% endblock shipping_address %} {% block shipping_method %}{% endblock %} {% block payment_method %}{% endblock %}