Add button to reset entire check-in stack (Z#23188730) (#5312)

* Show print logs to admins

* Add button to reset entire check-in stack (Z#23188730)

* isort

* Update src/pretix/control/templates/pretixcontrol/checkin/reset.html

Co-authored-by: Richard Schreiber <schreiber@rami.io>

* Update src/pretix/control/templates/pretixcontrol/checkin/reset.html

Co-authored-by: Richard Schreiber <schreiber@rami.io>

* Update src/pretix/control/templates/pretixcontrol/checkin/reset.html

Co-authored-by: Richard Schreiber <schreiber@rami.io>

* Update src/pretix/control/templates/pretixcontrol/checkin/lists.html

Co-authored-by: Richard Schreiber <schreiber@rami.io>

---------

Co-authored-by: Richard Schreiber <schreiber@rami.io>
This commit is contained in:
Raphael Michel
2025-07-18 10:02:18 +02:00
committed by GitHub
parent 200d520535
commit 423f0cbb90
9 changed files with 139 additions and 3 deletions

View File

@@ -215,3 +215,9 @@ class CheckinListSimulatorForm(forms.Form):
)
self.fields['gate'].widget.choices = self.fields['gate'].choices
self.fields['gate'].label = _('Gate')
class CheckinResetForm(forms.Form):
ok = forms.BooleanField(
label=_("I am sure that the check-in state of the entire event should be reset.")
)