{% extends "pretixcontrol/items/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Quota" %}{% endblock %} {% block inside %}

{% trans "Quota" %}

{% csrf_token %} {% if "success" in request.GET %}
{% trans "Your changes have been saved." %}
{% endif %}
{% trans "General information" %} {% bootstrap_field form.name layout="horizontal" %} {% bootstrap_field form.size layout="horizontal" %} {% trans "Items" %}

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

{% for item in items %}
{% bootstrap_field item.field layout="horizontal" %}
{% endfor %}
{% endblock %}