{% extends "base.html" %} {% load shop_tags i18n %} {% block body_id %}checkout{% endblock %} {% block meta_title %}{% trans "Checkout" %} - {{ step_title }}{% endblock %} {% block title %}{% trans "Checkout" %} - {% trans "Step" %} {{ step }} {% trans "of" %} {{ steps|length }}{% endblock %} {% block extra_head %} {% endblock %} {% block breadcrumb_menu %}
{% endblock %} {% block main %}

{% order_totals %}

{% csrf_token %} {% with form.non_field_errors as errors %} {% if errors or form.errors %} {% endif %} {% endwith %} {% block fields %}{% endblock %} {% if cart.has_items %} {% if not CHECKOUT_STEP_FIRST %} {% endif %} {% else %}

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

{% endif %}
{% endblock %}