You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

164 lines
6.0 KiB

4 years ago
4 years ago
  1. from django.db import models
  2. from django.forms import ModelForm, DateField, ChoiceField, RadioSelect, BooleanField
  3. from django.contrib.admin.widgets import AdminDateWidget
  4. from django.utils.html import format_html
  5. from .models import Project, Volunteer, ConcreteVolunteer, Extern, ConcreteExtern, IFG, Library, TYPE_CHOICES,\
  6. HonoraryCertificate, Travel, Email, Literature, List,\
  7. BusinessCard
  8. from .settings import DATAPROTECTION, FOERDERRICHTLINIEN, NUTZUNGSBEDINGUNGEN
  9. class FdbForm(ModelForm):
  10. '''this base class provides the required css class for all forms'''
  11. required_css_class = 'required'
  12. class ProjectForm(FdbForm):
  13. # start = DateField(widget=AdminDateWidget())
  14. class Meta:
  15. model = Project
  16. exclude = ('pid', 'project_of_year', 'finance_id','granted', 'granted_date', 'realname', 'email',\
  17. 'end_mail_send', 'status', 'persons', 'survey_mail_date', 'mail_state')
  18. widgets = {'start': AdminDateWidget(),
  19. 'end': AdminDateWidget(),}
  20. class ExternForm(FdbForm):
  21. choice = ChoiceField(choices=TYPE_CHOICES.items(), widget=RadioSelect,
  22. label='Was möchtest Du beantragen?')
  23. check = BooleanField(required=True,
  24. 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",
  25. DATAPROTECTION, FOERDERRICHTLINIEN))
  26. class Meta:
  27. model = ConcreteExtern
  28. exclude = ('granted', 'granted_date', 'survey_mail_send', 'service_id', 'survey_mail_date', 'mail_state')
  29. INTERN_CHOICES = {'PRO': 'Projektsteckbrief',
  30. 'HON': 'Ehrenamtsbescheinigung, Akkreditierung oder Redaktionsbestätigung',
  31. 'TRAV': 'Reisekostenerstattung'}
  32. class InternForm(FdbForm):
  33. choice = ChoiceField(choices = INTERN_CHOICES.items(), widget=RadioSelect,
  34. label = 'Was möchtest Du eingeben?')
  35. class Meta:
  36. model = ConcreteVolunteer
  37. exclude = ('granted', 'granted_date', 'survey_mail_send', 'survey_mail_date', 'mail_state')
  38. class TravelForm(FdbForm):
  39. # TODO: add some javascript to show/hide other-field
  40. # this is the code, to change required to false if needed
  41. def __init__(self, *args, **kwargs):
  42. super().__init__(*args, **kwargs)
  43. self.fields['project_name'].required = True
  44. self.fields['transport'].required = True
  45. self.fields['travelcost'].required = True
  46. self.fields['checkin'].required = True
  47. self.fields['checkout'].required = True
  48. self.fields['hotel'].required = True
  49. self.fields['project_end'].required = False
  50. class Meta:
  51. model = Travel
  52. 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', 'mail_state' )
  53. widgets = {'checkin': AdminDateWidget(),
  54. 'checkout': AdminDateWidget(),}
  55. fields = ['project_name', 'transport', 'travelcost', 'checkin', 'checkout', 'hotel', 'notes']
  56. class LibraryForm(FdbForm):
  57. class Meta:
  58. model = Library
  59. fields = ['cost', 'library', 'duration', 'notes', 'survey_mail_send']
  60. exclude = ['intern_notes', 'survey_mail_send', 'mail_state']
  61. class HonoraryCertificateForm(FdbForm):
  62. class Meta:
  63. model = HonoraryCertificate
  64. fields = ['request_url', 'project']
  65. exclude = ['intern_notes']
  66. class IFGForm(FdbForm):
  67. class Meta:
  68. model = IFG
  69. fields = ['cost', 'url', 'notes']
  70. exclude = ['intern_notes', 'survey_mail_send', 'mail_state']
  71. class CheckForm(FdbForm):
  72. """Baseclass for all classes which need a check for Nutzungsbedingungen"""
  73. check = BooleanField(required=True,
  74. label=format_html("Ich stimme den <a href='{}'>Nutzungsbedingungen</a> zu",
  75. NUTZUNGSBEDINGUNGEN))
  76. class LiteratureForm(CheckForm):
  77. def __init__(self, *args, **kwargs):
  78. super().__init__(*args, **kwargs)
  79. self.fields['selfbuy_give_data'].required = True
  80. class Meta:
  81. model = Literature
  82. fields = ['cost', 'info', 'source', 'notes', 'selfbuy', 'selfbuy_data', 'selfbuy_give_data']
  83. exclude = ['intern_notes', 'survey_mail_send', 'mail_state']
  84. class Media:
  85. js = ('dropdown/js/literature.js',)
  86. ADULT_CHOICES = {'TRUE': format_html('Ich bin volljährig.'),
  87. 'FALSE': format_html('Ich bin noch nicht volljährig.')
  88. }
  89. class EmailForm(CheckForm):
  90. # this is the code, to change required to false if needed
  91. def __init__(self, *args, **kwargs):
  92. super().__init__(*args, **kwargs)
  93. self.fields['adult'].required = True
  94. self.fields['other'].required = True
  95. adult = ChoiceField(label='Volljährigkeit', choices=ADULT_CHOICES.items(), widget=RadioSelect())
  96. # TODO: add some javascript to show/hide other-field
  97. class Meta:
  98. model = Email
  99. fields = ['domain', 'address', 'other', 'adult']
  100. exclude = ['intern_notes', 'survey_mail_send', 'mail_state']
  101. class Media:
  102. js = ('dropdown/js/mail.js',)
  103. class BusinessCardForm(CheckForm):
  104. # this is the code, to change required to false if needed
  105. def __init__(self, *args, **kwargs):
  106. super().__init__(*args, **kwargs)
  107. self.fields['url_of_pic'].required = True
  108. self.fields['send_data_to_print'].required = True
  109. class Meta:
  110. model = BusinessCard
  111. exclude = ['intern_notes', 'survey_mail_send', 'mail_state']
  112. fields = ['project', 'data', 'variant', 'url_of_pic', 'send_data_to_print', 'sent_to']
  113. class Media:
  114. js = ('dropdown/js/businessCard.js',)
  115. class ListForm(CheckForm):
  116. class Meta:
  117. model = List
  118. fields = ['domain', 'address']
  119. exclude = ['intern_notes', 'survey_mail_send','mail_state']