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

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

{% else %}

{% trans "Quota" %}

{% endif %}
{% csrf_token %} {% bootstrap_form_errors form %}
{% bootstrap_field form.name layout="control" %} {% bootstrap_field form.size layout="control" %} {% if form.subevent %} {% bootstrap_field form.subevent layout="control" %} {% endif %} {% bootstrap_field form.itemvars layout="control" %}

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

{% endblock %}