From 16957eec33516c8d46948e0f9fb50df9f871106d Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 22 Apr 2020 16:48:21 +0200 Subject: [PATCH] Initialize bulk create form with weekly instead of yearly events --- src/pretix/control/forms/subevents.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pretix/control/forms/subevents.py b/src/pretix/control/forms/subevents.py index 9edb52baa7..103e292326 100644 --- a/src/pretix/control/forms/subevents.py +++ b/src/pretix/control/forms/subevents.py @@ -228,7 +228,8 @@ class RRuleForm(forms.Form): ('monthly', _('month(s)')), ('weekly', _('week(s)')), ('daily', _('day(s)')), - ] + ], + initial='weekly' ) interval = forms.IntegerField( label=_('Interval'),