{% overextends "shop/checkout.html" %} {% load shop_tags mezzanine_tags i18n %} {% block main %} {% block before-form %}{% endblock %}
{% csrf_token %} {% block fields %}{% endblock %} {% block nav-buttons %} {% 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 %}
{% if request.cart.has_items %}
    {% for item in request.cart %}
  • {% if item.image %} {{ item.description }} {% endif %}
    {{ item.quantity }} x {{ item.description }} {{ item.total_price|currency }}
  • {% endfor %}
{% order_totals %}
{% trans "Edit Cart" %}
{% endif %} {% block after-form %}{% endblock %}
{% endblock %}