{% extends "base.html" %} {% load shop_tags mezzanine_tags i18n future %} {% block meta_title %}{% trans "Checkout" %} - {{ step_title }}{% endblock %} {% block title %}{% trans "Checkout" %} - {% trans "Step" %} {{ step }} {% trans "of" %} {{ steps|length }}{% endblock %} {% block body_id %}checkout{% endblock %} {% block extra_head %} {% endblock %} {% block breadcrumb_menu %} {% for step in steps %}
  • {% if step.title == step_title %} {{ step.title }} {% else %} {{ step.title }} {% endif %} /
  • {% endfor %}
  • {% trans "Complete" %}
  • {% endblock %} {% block main %} {% if request.cart.has_items %}
    {% order_totals %}
    {% trans "Edit Cart" %}
    {% endif %}
    {% csrf_token %} {% with form.non_field_errors as errors %} {% if errors or form.errors %}
    {% for error in errors %} {{ error }} {% empty %} {% trans "Please correct the errors below." %} {% endfor %}
    {% endif %} {% endwith %} {% block fields %}{% endblock %} {% if request.cart.has_items %}
    {% if not CHECKOUT_STEP_FIRST %} {% endif %}
    {% else %}

    {% trans "Your cart is empty." %}

    {% trans "This may be due to your session timing out after a period of inactivity." %}

    {% trans "We apologize for the inconvenience." %}


    {% trans "Continue Shopping" %}

    {% endif %}
    {% endblock %}