{% extends "pretixpresale/event/checkout_base.html" %} {% load i18n %} {% load bootstrap3 %} {% block inner %}
{% trans "For some of the products in your cart, you can choose additional options before you continue." %}
{% if c.min_count == c.max_count %} {% blocktrans trimmed count min_count=c.min_count %} You need to choose exactly one option from this category. {% plural %} You need to choose {{ min_count }} options from this category. {% endblocktrans %} {% elif c.min_count == 0 %} {% blocktrans trimmed count max_count=c.max_count %} You can choose at most one option from this category. {% plural %} You can choose up to {{ max_count }} options from this category. {% endblocktrans %} {% else %} {% blocktrans trimmed with min_count=c.min_count max_count=c.max_count %} You can choose between {{ min_count }} and {{ max_count }} options from this category. {% endblocktrans %} {% endif %}