{% extends "pretixcontrol/items/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %} {% if question %} {% blocktrans with name=quota.name %}Quota: {{ name }}{% endblocktrans %} {% else %} {% trans "Quota" %} {% endif %} {% endblock %} {% block inside %} {% if question %}

{% blocktrans with name=quota.name %}Quota: {{ name }}{% endblocktrans %}

{% else %}

{% trans "Quota" %}

{% endif %}
{% csrf_token %} {% bootstrap_form_errors form %}
{% trans "General information" %} {% bootstrap_field form.name layout="control" %} {% bootstrap_field form.size layout="control" %} {% if form.subevent %} {% bootstrap_field form.subevent layout="control" %} {% endif %}
{% trans "Items" %}

{% blocktrans trimmed %} Please select the products or product variations this quota should be applied to. If you apply two quotas to the same product, it will only be available if both quotas have capacity left. {% endblocktrans %}

{% bootstrap_field form.itemvars layout="control" %}
{% trans "Advanced options" %} {% bootstrap_field form.close_when_sold_out layout="control" %} {% bootstrap_field form.release_after_exit layout="control" %} {% bootstrap_field form.ignore_for_event_availability layout="control" %}
{% endblock %}