{% extends "pretixcontrol/items/base.html" %} {% load i18n %} {% block title %}{% trans "Questions" %}{% endblock %} {% block inside %}

{% trans "Questions" %}

{% blocktrans trimmed %} Questions allow your attendees to fill in additional data about their ticket. If you provide food, one example might be to ask your users about dietary requirements. {% endblocktrans %}

{% csrf_token %}

{% trans "Create a new question" %}

{% for q in questions %} {% endfor %}
{% trans "Question" %} {% trans "Type" %} {% trans "Products" %}
{% if q.pk %} {% endif %} {{ q.question }} {% if q.pk %} {% endif %}
{{ q.identifier }}
{% if q.pk %} {{ q.get_type_display }} {% else %} {% trans "System question" %} {% endif %} {% if q.required %} {% endif %} {% if q.pk and q.ask_during_checkin %} {% endif %} {% if q.pk and q.hidden %} {% endif %} {% if q.pk %}
    {% for item in q.items.all %}
  • {{ item }}
  • {% endfor %}
{% else %} {% trans "All personalized products" %} {% endif %}
{% if q.pk %} {% else %} {% endif %}
{% endblock %}