forked from beba/foerderbarometer
141 lines
4.7 KiB
Python
141 lines
4.7 KiB
Python
from django.db import models
|
|
from django.forms import ModelForm, DateField, ChoiceField, RadioSelect, BooleanField
|
|
from django.contrib.admin.widgets import AdminDateWidget
|
|
from django.utils.html import format_html
|
|
|
|
from .models import Project, Volunteer, ConcreteVolunteer, Extern, ConcreteExtern, IFG, Library, TYPE_CHOICES,\
|
|
HonoraryCertificate, Travel, Email, Literature, List,\
|
|
BusinessCard
|
|
from .settings import DATAPROTECTION, FOERDERRICHTLINIEN, NUTZUNGSBEDINGUNGEN
|
|
|
|
|
|
|
|
class FdbForm(ModelForm):
|
|
'''this base class provides the required css class for all forms'''
|
|
required_css_class = 'required'
|
|
|
|
|
|
class ProjectForm(FdbForm):
|
|
|
|
# start = DateField(widget=AdminDateWidget())
|
|
|
|
class Meta:
|
|
model = Project
|
|
exclude = ('pid', 'project_of_year', 'finance_id','granted', 'granted_date', 'realname', 'email',\
|
|
'end_mail_send', 'status', 'persons', 'survey_mail_date')
|
|
widgets = {'start': AdminDateWidget(),
|
|
'end': AdminDateWidget(),}
|
|
|
|
|
|
class ExternForm(FdbForm):
|
|
|
|
choice = ChoiceField(choices=TYPE_CHOICES.items(), widget=RadioSelect,
|
|
label='Was möchtest Du beantragen?')
|
|
|
|
check = BooleanField(required=True,
|
|
label=format_html("Ich stimme den <a href='{}' target='_blank' rel='noopener'>Datenschutzbestimmungen</a> und den <a href='{}' target='_blank' rel='noopener'>Förderrichtlinen</a> zu",
|
|
DATAPROTECTION, FOERDERRICHTLINIEN))
|
|
|
|
class Meta:
|
|
model = ConcreteExtern
|
|
exclude = ('granted', 'granted_date', 'survey_mail_send', 'service_id', 'survey_mail_date')
|
|
|
|
|
|
INTERN_CHOICES = {'PRO': 'Projektsteckbrief',
|
|
'HON': 'Ehrenamtsbescheinigung, Akkreditierung oder Redaktionsbestätigung',
|
|
'TRAV': 'Reisekostenerstattung'}
|
|
|
|
class InternForm(FdbForm):
|
|
choice = ChoiceField(choices = INTERN_CHOICES.items(), widget=RadioSelect,
|
|
label = 'Was möchtest Du eingeben?')
|
|
|
|
class Meta:
|
|
model = ConcreteVolunteer
|
|
exclude = ('granted', 'granted_date', 'survey_mail_send', 'survey_mail_date')
|
|
|
|
|
|
class TravelForm(FdbForm):
|
|
# TODO: add some javascript to show/hide other-field
|
|
class Meta:
|
|
model = Travel
|
|
exclude = ('granted', 'granted_date', 'survey_mail_send', 'realname', 'email', 'survey_mail_date', 'project', 'request_url', 'payed_for_hotel_by', 'payed_for_travel_by', 'intern_notes' )
|
|
widgets = {'checkin': AdminDateWidget(),
|
|
'checkout': AdminDateWidget(),}
|
|
|
|
class LibraryForm(FdbForm):
|
|
|
|
class Meta:
|
|
model = Library
|
|
fields = ['cost', 'library', 'duration', 'notes']
|
|
exclude = ['intern_notes']
|
|
|
|
class HonoraryCertificateForm(FdbForm):
|
|
class Meta:
|
|
model = HonoraryCertificate
|
|
fields = ['request_url', 'project']
|
|
exclude = ['intern_notes']
|
|
|
|
class IFGForm(FdbForm):
|
|
class Meta:
|
|
model = IFG
|
|
fields = ['cost', 'url', 'notes']
|
|
exclude = ['intern_notes']
|
|
|
|
|
|
class CheckForm(FdbForm):
|
|
"""Baseclass for all classes which need a check for Nutzungsbedingungen"""
|
|
check = BooleanField(required=True,
|
|
label=format_html("Ich stimme den <a href='{}'>Nutzungsbedingungen</a> zu",
|
|
NUTZUNGSBEDINGUNGEN))
|
|
|
|
|
|
class LiteratureForm(CheckForm):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.fields['selfbuy_give_data'].required = True
|
|
class Meta:
|
|
model = Literature
|
|
fields = ['cost', 'info', 'source', 'notes', 'selfbuy', 'selfbuy_give_data']
|
|
exclude = ['intern_notes']
|
|
class Media:
|
|
js = ('dropdown/js/base.js',)
|
|
|
|
class EmailForm(CheckForm):
|
|
|
|
# this is the code, to change required to false if needed
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.fields['adult'].required = True
|
|
|
|
|
|
# TODO: add some javascript to show/hide other-field
|
|
class Meta:
|
|
model = Email
|
|
fields = ['domain', 'address', 'other', 'adult']
|
|
exclude = ['intern_notes']
|
|
class Media:
|
|
js = ('dropdown/js/base.js',)
|
|
|
|
|
|
|
|
class BusinessCardForm(CheckForm):
|
|
# this is the code, to change required to false if needed
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.fields['url_of_pic'].required = True
|
|
|
|
class Meta:
|
|
model = BusinessCard
|
|
exclude = ['intern_notes']
|
|
fields = ['project', 'data', 'variant', 'url_of_pic', 'sent_to']
|
|
class Media:
|
|
js = ('dropdown/js/base.js',)
|
|
|
|
|
|
class ListForm(CheckForm):
|
|
class Meta:
|
|
model = List
|
|
fields = ['domain', 'address']
|
|
exclude = ['intern_notes']
|
|
|