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

{% trans "Delete question" %}

{% csrf_token %}

{% blocktrans %}Are you sure you want to delete the question {{ question }}?{% endblocktrans %}

{% if dependent|length > 0 %}

{% blocktrans %}All answers to the question given by the buyers of the following products will be lost.{% endblocktrans %}

{% for item in dependent %}
  • {{ item.name }}
  • {% endfor %} {% endif %}
    {% trans "Cancel" %}
    {% endblock %}