{% extends "pretixcontrol/event/settings_base.html" %} {% load i18n %} {% load bootstrap3 %} {% block inside %}

{% trans "Ticket pass" %}

{% trans "Configure the mobile ticket pass: barcode-delay, gate & venue info links, and the on-ticket logo and sponsor slot." %}

{% csrf_token %} {% bootstrap_form_errors form %}
{% trans "Security & entry" %} {% bootstrap_field form.fc_access_mode layout="horizontal" %} {% bootstrap_field form.fc_access_rotate_minutes layout="horizontal" %} {% bootstrap_field form.fc_access_unlock_days layout="horizontal" %} {% bootstrap_field form.fc_access_gate layout="horizontal" %}
{% trans "Info links" %} {% bootstrap_field form.fc_access_directions_url layout="horizontal" %} {% bootstrap_field form.fc_access_accessibility_url layout="horizontal" %} {% bootstrap_field form.fc_access_bag_url layout="horizontal" %} {% bootstrap_field form.fc_access_wallet_url layout="horizontal" %} {% bootstrap_field form.fc_access_resale_url layout="horizontal" %}
{% trans "Branding & sponsorship" %} {% bootstrap_field form.fc_access_logo_url layout="horizontal" %} {% bootstrap_field form.fc_access_sponsor_name layout="horizontal" %} {% bootstrap_field form.fc_access_sponsor_logo_url layout="horizontal" %} {% bootstrap_field form.fc_access_sponsor_url layout="horizontal" %}
{% if form.item_rows %}
{% trans "Per ticket-type overrides" %}

{% trans "Leave a cell blank to inherit the event defaults above. e.g. unlock VIP earlier than GA, or set one ticket type to Rolling TOTP / static PDFs." %}

{% for row in form.item_rows %} {% endfor %}
{% trans "Ticket type" %} {% trans "Unlock days" %} {% trans "Anti-screenshot mode" %} {% trans "Rotate every N mins" %}
{{ row.item.name }}{% if not row.item.admission %} {% trans "non-admission" %}{% endif %} {{ row.unlock_days }}{% if row.unlock_days.errors %}
{{ row.unlock_days.errors }}
{% endif %}
{{ row.mode }} {{ row.rotate_minutes }}{% if row.rotate_minutes.errors %}
{{ row.rotate_minutes.errors }}
{% endif %}
{% endif %}
{% endblock %}