{% extends "pretixcontrol/items/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load static %} {% load compress %} {% 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" %} {% bootstrap_field form.name layout="control" %} {% if form.subevent %} {% bootstrap_field form.subevent layout="control" %} {% endif %} {% bootstrap_field form.include_pending layout="control" %} {% bootstrap_field form.all_products layout="control" %} {% bootstrap_field form.limit_products layout="control" %}
{% trans "Advanced" %}
{% blocktrans trimmed %} These settings on this page are intended for professional users with very specific check-in situations. Please reach out to support if you have questions about setting this up. {% endblocktrans %}
{% blocktrans trimmed %} Make sure to always use the latest version of our scanning apps for these options to work. {% endblocktrans %}
{% blocktrans trimmed %} If you make use of these advanced options, we recommend using our Android and Desktop apps. Custom check-in rules do not work offline with our iOS scanning app. {% endblocktrans %}
{% bootstrap_field form.allow_multiple_entries layout="control" %} {% bootstrap_field form.allow_entry_after_exit layout="control" %} {% bootstrap_field form.exit_all_at layout="control" %} {% bootstrap_field form.auto_checkin_sales_channels layout="control" %} {% if form.gates %} {% bootstrap_field form.gates layout="control" %} {% endif %}

{% trans "Custom check-in rule" %}

{{ form.rules }}
{% compress js %} {% endcompress %} {% endblock %}