Bugfix: fixed bugfix about min/max participants.
This commit is contained in:
@@ -612,11 +612,9 @@ class RegistrationForm(EventCreateForm):
|
|||||||
_form_title = _(u'Teilnehmer / Anmeldung')
|
_form_title = _(u'Teilnehmer / Anmeldung')
|
||||||
_next_form_name = 'ChargesForm'
|
_next_form_name = 'ChargesForm'
|
||||||
|
|
||||||
min_participants = forms.IntegerField(initial=0,
|
min_participants = forms.IntegerField(min_value=0,
|
||||||
min_value=0,
|
|
||||||
label=_(u'Min. Teilnehmer'))
|
label=_(u'Min. Teilnehmer'))
|
||||||
max_participants = forms.IntegerField(initial=0,
|
max_participants = forms.IntegerField(min_value=0,
|
||||||
min_value=0,
|
|
||||||
label=_(u'Max. Teilnehmer'))
|
label=_(u'Max. Teilnehmer'))
|
||||||
|
|
||||||
deadline = forms.ChoiceField(choices=choices.DEADLINE_CHOICES,
|
deadline = forms.ChoiceField(choices=choices.DEADLINE_CHOICES,
|
||||||
|
|||||||
Reference in New Issue
Block a user