diff --git a/input/forms.py b/input/forms.py index 4043a7f..13a4464 100644 --- a/input/forms.py +++ b/input/forms.py @@ -1,5 +1,5 @@ from django.db import models -from django.forms import ModelForm, DateField, ChoiceField, RadioSelect +from django.forms import ModelForm, DateField, ChoiceField, RadioSelect, BooleanField from django.contrib.admin.widgets import AdminDateWidget from .models import Project, Volunteer, IFG, Library, TYPE_CHOICES @@ -18,6 +18,8 @@ class VolunteerForm(ModelForm): choice = ChoiceField(choices=TYPE_CHOICES, widget=RadioSelect, label='Was möchtest Du beantragen?') + check = BooleanField(required=True, label='Ich stimme den Datenschutzbestimmungen und den Förderrichtlinen zu') + class Meta: model = Volunteer exclude = ('granted',)