{% extends "shop/checkout.html" %} {% load staticfiles i18n future mezzanine_tags %} {% block extra_head %} {{ block.super }} {% endblock %} {% block fields %} {% if request.cart.has_items %} {% if not request.user.is_authenticated %} {% ifinstalled mezzanine.accounts %}
{% url "login" as login_url %} {% url "signup" as signup_url %} {% with request.path as next %} {% blocktrans %} If you have an existing account or would like to create one, please log in or sign up. {% endblocktrans %} {% endwith %}
{% endifinstalled %} {% endif %} {% errors_for form %} {% if not settings.SHOP_CHECKOUT_STEPS_SPLIT and settings.SHOP_PAYMENT_STEP_ENABLED %} {% include "shop/includes/payment_fields.html" %} {% endif %} {% fields_for form.other_fields %} {% endif %} {% endblock %}