diff --git a/foerderbarometer/settings.py b/foerderbarometer/settings.py index d9249c9..abea68d 100644 --- a/foerderbarometer/settings.py +++ b/foerderbarometer/settings.py @@ -38,6 +38,7 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + 'formtools', ] MIDDLEWARE = [ diff --git a/input/forms.py b/input/forms.py index 7105931..7c33a8a 100644 --- a/input/forms.py +++ b/input/forms.py @@ -1,8 +1,8 @@ from django.db import models -from django.forms import ModelForm, DateField +from django.forms import ModelForm, DateField, ChoiceField, RadioSelect from django.contrib.admin.widgets import AdminDateWidget -from .models import Project +from .models import Project, Volunteer, IFG, Library class ProjectForm(ModelForm): @@ -11,3 +11,23 @@ class ProjectForm(ModelForm): class Meta: model = Project fields = '__all__' + +class VolunteerForm(ModelForm): + + CHOICES = [('IFG','ifg'), + ('Lib','library'),] + choice = ChoiceField(choices=CHOICES, widget=RadioSelect) + + class Meta: + model = Volunteer + fields = '__all__' + +class LibraryForm: + class Meta: + model = Library + fields = '__all__' + +class IFGForm: + class Meta: + model = 'IFG' + fields = '__all__'