diff --git a/input/forms.py b/input/forms.py index 3e0d865..a243cfe 100644 --- a/input/forms.py +++ b/input/forms.py @@ -15,11 +15,13 @@ class ProjectForm(ModelForm): class VolunteerForm(ModelForm): - choice = ChoiceField(choices=TYPE_CHOICES, widget=RadioSelect) + choice = ChoiceField(choices=TYPE_CHOICES, widget=RadioSelect, + label='Was möchtest Du beantragen?') class Meta: model = Volunteer fields = '__all__' + # labels = {'choice': 'Was möchtest Du beantragen?'} class LibraryForm(ModelForm):