{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load static %} {% block title %}{% trans "Check-in device configuration" %}{% endblock %} {% block content %}

{% trans "Check-in device configuration" %}

{% if not configs or "create" in request.GET %}

{% trans "We've got a new app!" %}

{% blocktrans trimmed %} We've retired pretixdesk and pretixdroid in favor of our new app pretixSCAN that works on all major platforms, allows convenient switching between events, has better performance when dealing with large events and supports printing badges. We suggest that you switch to pretixSCAN for your events, but you can continue using pretixdesk for at least all of 2019, if you like. {% endblocktrans %}

{% trans "Our new app: pretixSCAN" %}

{% trans "Available on Android, iOS, Windows, and Linux." %}

{% trans "Configuration is available in your organizer account's device list." %}

{% trans "Switch to my device list" %}

{% trans "Our old apps: pretixdesk and pretixdroid" %}

{% trans "Available on Android, Windows, and Linux." %}

{% trans "Scroll down to create a configuration" %}

{% endif %} {% if not configs or "create" in request.GET %}

{% trans "Create app configuration" %}

{% blocktrans trimmed %} To start scanning tickets with our apps, first create a configuration code here: {% endblocktrans %}

{% csrf_token %} {% bootstrap_form_errors add_form %} {% bootstrap_field add_form.list layout="horizontal" %} {% bootstrap_field add_form.all_items layout="horizontal" %} {% bootstrap_field add_form.items layout="horizontal" %} {% bootstrap_field add_form.show_info layout="horizontal" %} {% bootstrap_field add_form.allow_search layout="horizontal" %} {% bootstrap_field add_form.app layout="horizontal" %}
{% endif %} {% if configs and "create" not in request.GET %}

{% trans "Existing app configurations" %}

{% trans "Create a new configuration" %}
{% csrf_token %} {% for ac in configs %} {% endfor %}
{% trans "ID" %} {% trans "Check-in list" %} {% trans "Items" %} {% trans "Show info" %} {% trans "Allow search" %}
{% if ac.app == "pretixdroid" %} {% elif ac.app == "pretixdesk" %} {% endif %} {{ ac.key|slice:"0:8" }}… {{ ac.list }} {% if ac.all_items %} {% trans "All" %} {% else %} {% for item in ac.items.all %} {{ item.name }} {% if forloop.revcounter0 > 0 %}
{% endif %} {% endfor %} {% endif %}
{% if ac.show_info %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %} {% if ac.allow_search %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %} {% trans "Configure device" %}
{% endif %} {% endblock %}