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

Where should we ship to?

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

An address from your addressbook?

{% if not forloop.last %}

Or a new address?

{% else %}

Your addressbook is currently empty

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