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

{% trans "Data fields" %}

{% 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 %} {% if 'event.items:write' in request.eventpermset %}

{% trans "Create a new data field" %}

{% endif %}
{% for q in questions %} {% endfor %}
{% trans "Internal name" %} {% trans "Type" %}
{{ q.question }}
{{ q.identifier }}
{{ q.get_type_display }} {% if q.required %} {% endif %} {% if q.pk and q.ask_during_checkin %} {% endif %} {% if q.pk and q.hidden %} {% endif %} {% if 'event.items:write' in request.eventpermset %} {% endif %}
{% endblock %}