|
|
@ -15,8 +15,12 @@ class ProjectForm(ModelForm): |
|
|
|
|
|
|
|
class VolunteerForm(ModelForm): |
|
|
|
|
|
|
|
CHOICES = [('IFG','ifg'), |
|
|
|
('Lib','library'),] |
|
|
|
CHOICES = [('BIB', 'Bibliotheksstipendium'), |
|
|
|
('ELIT', 'eLiteraturstipendium'), |
|
|
|
('SOFT', 'Softwarestipendium'), |
|
|
|
('VIS', 'Visitenkarten, Mailingliste oder E-Mail-Adresse'), |
|
|
|
('IFG', 'Kostenübernahme IFG-Anfrage'), |
|
|
|
('LIB', 'library'),] |
|
|
|
choice = ChoiceField(choices=CHOICES, widget=RadioSelect) |
|
|
|
|
|
|
|
class Meta: |
|
|
|