diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index 1de4b3167..b81093cf1 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -47,11 +47,6 @@ class EventWizardFoundationForm(forms.Form): ) has_subevents = forms.BooleanField( label=_("This is an event series"), - help_text=_('Only recommended for advanced users. If this feature is enabled, this will not only be a ' - 'single event but a series of very similar events that are handled within a single shop. ' - 'The single events inside the series can only differ in date, time, location, prices and ' - 'quotas, but not in other settings, and buying tickets across multiple of these events at ' - 'the same time is possible. You cannot change this setting for this event later.'), required=False, ) diff --git a/src/pretix/control/templates/pretixcontrol/events/create_foundation.html b/src/pretix/control/templates/pretixcontrol/events/create_foundation.html index a673382c3..c8bfca40a 100644 --- a/src/pretix/control/templates/pretixcontrol/events/create_foundation.html +++ b/src/pretix/control/templates/pretixcontrol/events/create_foundation.html @@ -3,8 +3,51 @@ {% load bootstrap3 %} {% block form %} {% bootstrap_field form.organizer layout="horizontal" %} +
{% trans "Please note that you will only be able to delete your event until the first order has been created." %} diff --git a/src/pretix/static/pretixcontrol/scss/_forms.scss b/src/pretix/static/pretixcontrol/scss/_forms.scss index 561679f3f..877a19712 100644 --- a/src/pretix/static/pretixcontrol/scss/_forms.scss +++ b/src/pretix/static/pretixcontrol/scss/_forms.scss @@ -430,6 +430,21 @@ table td > .checkbox input[type="checkbox"] { } } } +.form-horizontal .big-radio { + border: 2px solid #ccc; + padding: 0; + border-radius: $border-radius-base; + label { + padding: 15px 15px 15px 30px; + } + + .help-block { + margin-bottom: 0; + } +} +.form-horizontal .big-radio:not(:last-child) { + margin-bottom: 15px; +} .accordion-radio { display: block; margin: 0;