{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %} {% for step in checkout_flow %} {% if request.resolver_match.kwargs.step == step.identifier %} {% blocktrans trimmed with label=step.label current=forloop.counter total=checkout_flow|length %} Step {{ current }} of {{ total }}: {{ label }} {% endblocktrans %} – {% endif %} {% endfor %} {% trans "Checkout" %} {% endblock %} {% block content %}

{% trans "Checkout" %}

{% include "pretixpresale/event/fragment_checkoutflow.html" %} {% block inner %} {% endblock %}
{% endblock %}