{% 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 %}

{% if questions|length == 0 %}

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

{% trans "Create a new question" %}
{% else %}

{% trans "Create a new question" %}

{% for q in questions %} {% endfor %}
{% trans "Question" %} {% trans "Type" %}
{{ q.question }} {{ q.get_type_display }}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}