{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load money %} {% load static %} {% block title %}{% trans "Auto check-in rules" %}{% endblock %} {% block content %}

{% trans "Auto check-in rules" %}

{% if rules|length == 0 %}

{% blocktrans trimmed %} You haven't created any rules yet. {% endblocktrans %}

{% trans "Create a new check-in rule" %}
{% else %}

{% trans "Create a new check-in rule" %}

{% for r in rules %} {% endfor %}
{% trans "Check-in list" %} {% trans "Sales channels" %} {% trans "Products" %} {% trans "Payment methods" %}
{% if r.list %} {{ r.list }} {% else %} {% trans "All" %} {% endif %} {% for c in sales_channels %} {% if r.all_sales_channels or c in r.limit_sales_channels.all %} {% if "." in c.icon %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %} {% if r.all_products %} {% trans "All" %} {% else %}
    {% for i in r.limit_products.all %}
  • {{ i }}
  • {% endfor %} {% for v in r.limit_variations.all %}
  • {{ v.item }} – {{ v.value }}
  • {% endfor %}
{% endif %}
{% if r.all_payment_methods %} {% trans "All" %} {% else %}
    {% for p in r.pprovs %}
  • {{ p.verbose_name }}
  • {% endfor %}
{% endif %}
{% if "can_change_event_settings" in request.eventpermset %} {% endif %}
{% endif %} {% include "pretixcontrol/pagination.html" %} {% endblock %}