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

{% trans "Delete check-in list" %}

{% csrf_token %}

{% blocktrans with name=checkinlist.name %}Are you sure you want to delete the check-in list {{ name }}?{% endblocktrans %}

{% if checkinlist.checkins.exists %}
{% blocktrans trimmed with num=checkinlist.checkins.count %} This will delete the information of {{ num }} check-ins as well. {% endblocktrans %}
{% endif %}
{% trans "Cancel" %}
{% endblock %}