{% 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 %}
{% endblock %}