{% extends "pretixcontrol/items/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %} {% if checkinlist %} {% blocktrans with name=checkinlist.name %}Check-in list: {{ name }}{% endblocktrans %} {% else %} {% trans "Check-in list" %} {% endif %} {% endblock %} {% block inside %} {% if checkinlist %}

{% blocktrans with name=checkinlist.name %}Check-in list: {{ name }}{% endblocktrans %}

{% else %}

{% trans "Check-in list" %}

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

{% blocktrans trimmed %} Please select the products that should be part of this check-in list. {% endblocktrans %}

{% bootstrap_field form.all_products layout="control" %} {% bootstrap_field form.limit_products layout="control" %}
{% trans "Advanced" %} {% bootstrap_field form.auto_checkin_sales_channels layout="control" %}
{% endblock %}