{% extends 'cmsplugin_shop/base.html' %} {% load i18n %} {% block title %}{% trans 'Order' %}{% endblock %} {% block extrahead %}{{ wizard.form.media }}{% endblock %} {% block content %}

{% if wizard.steps.step1 == 1 %} {% trans 'Order' %} {% else %} {% trans 'Order Summary' %} {% endif %} {% blocktrans with step=wizard.steps.step1 count=wizard.steps.count %}step {{ step }} of {{ count }}{% endblocktrans %}

{% if wizard.steps.step0 %} {% include 'cmsplugin_shop/order_cart.html' with cart=request.cart %} {% include 'cmsplugin_shop/order_details.html' %} {% endif %}
{% csrf_token %} {{ wizard.management_form }} {% if wizard.form.forms %} {{ wizard.form.management_form }} {% for form in wizard.form.forms %} {{ form }} {% endfor %} {% else %} {{ wizard.form }} {% endif %}
{% if wizard.steps.prev %} {% endif %} {% if wizard.steps.next %} {% else %} {% endif %}
{% endblock %}