Set initial value for posts in assingment.

This commit is contained in:
Norman Jäckel 2012-07-15 22:46:20 +02:00
parent c2ec78c828
commit bee6fa7147
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ from openslides.assignment.models import Assignment
class AssignmentForm(forms.ModelForm, CssClassMixin):
posts = forms.IntegerField(min_value=1,
posts = forms.IntegerField(min_value=1, initial=1,
label=_("Number of available posts"))
class Meta: