From 1155d18b7ff50b18a196f669eede97b13bd9e8dc Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 19 Sep 2018 15:44:17 +0200 Subject: [PATCH] Show waiting list options even when waiting list is disabled --- src/pretix/control/forms/event.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index 2d9a7a48f3..bfff3814d4 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -311,7 +311,7 @@ class EventSettingsForm(SettingsForm): help_text=_("If a ticket voucher is sent to a person on the waiting list, it has to be redeemed within this " "number of hours until it expires and can be re-assigned to the next person on the list."), required=False, - widget=forms.NumberInput(attrs={'data-display-dependency': '#id_settings-waiting_list_enabled'}), + widget=forms.NumberInput(), ) waiting_list_auto = forms.BooleanField( label=_("Automatic waiting list assignments"), @@ -319,7 +319,7 @@ class EventSettingsForm(SettingsForm): "on the waiting list for that product. If this is not active, mails will not be send automatically " "but you can send them manually via the control panel."), required=False, - widget=forms.CheckboxInput(attrs={'data-display-dependency': '#id_settings-waiting_list_enabled'}), + widget=forms.CheckboxInput(), ) attendee_names_asked = forms.BooleanField( label=_("Ask for attendee names"),