{% extends "pretixcontrol/items/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load static %} {% load compress %} {% load vite %} {% 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 %} {% trans "Check-in simulator" %}

{% 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. {% endblocktrans %}
{% bootstrap_field form.allow_multiple_entries layout="control" %} {% bootstrap_field form.allow_entry_after_exit layout="control" %} {% bootstrap_field form.addon_match layout="control" %} {% bootstrap_field form.exit_all_at layout="control" %} {% if form.gates %} {% bootstrap_field form.gates layout="control" %} {% endif %} {% bootstrap_field form.consider_tickets_used layout="control" %} {% bootstrap_field form.ignore_in_statistics layout="control" %}

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

{{ form.rules }}
{{ items|json_script:"items" }} {% compress js %} {% endcompress %} {% vite_hmr %} {% vite_asset "src/pretix/static/pretixcontrol/js/ui/checkinrules/index.ts" %} {% endblock %}