{% load i18n %}
{% for step in checkout_flow %}
{% if step.c_is_before %} {% trans "Completed:" %} {% elif request.resolver_match.kwargs.step == step.identifier %} {% trans "Current:" %} {% endif %} {{ step.label }}
{% endfor %}
{% trans "Order confirmed" context "checkoutflow" %}