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.

152 lines
5.2 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')
  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')
  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')
  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. class Meta:
  50. model = Travel
  51. 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' )
  52. widgets = {'checkin': AdminDateWidget(),
  53. 'checkout': AdminDateWidget(),}
  54. fields = ['project_name', 'transport', 'travelcost', 'checkin', 'checkout', 'hotel', 'notes']
  55. class LibraryForm(FdbForm):
  56. class Meta:
  57. model = Library
  58. fields = ['cost', 'library', 'duration', 'notes']
  59. exclude = ['intern_notes']
  60. class HonoraryCertificateForm(FdbForm):
  61. class Meta:
  62. model = HonoraryCertificate
  63. fields = ['request_url', 'project']
  64. exclude = ['intern_notes']
  65. class IFGForm(FdbForm):
  66. class Meta:
  67. model = IFG
  68. fields = ['cost', 'url', 'notes']
  69. exclude = ['intern_notes']
  70. class CheckForm(FdbForm):
  71. """Baseclass for all classes which need a check for Nutzungsbedingungen"""
  72. check = BooleanField(required=True,
  73. label=format_html("Ich stimme den <a href='{}'>Nutzungsbedingungen</a> zu",
  74. NUTZUNGSBEDINGUNGEN))
  75. class LiteratureForm(CheckForm):
  76. def __init__(self, *args, **kwargs):
  77. super().__init__(*args, **kwargs)
  78. self.fields['selfbuy_give_data'].required = True
  79. class Meta:
  80. model = Literature
  81. fields = ['cost', 'info', 'source', 'notes', 'selfbuy', 'selfbuy_give_data']
  82. exclude = ['intern_notes']
  83. class Media:
  84. js = ('dropdown/js/base.js',)
  85. class EmailForm(CheckForm):
  86. # this is the code, to change required to false if needed
  87. def __init__(self, *args, **kwargs):
  88. super().__init__(*args, **kwargs)
  89. self.fields['adult'].required = True
  90. # TODO: add some javascript to show/hide other-field
  91. class Meta:
  92. model = Email
  93. fields = ['domain', 'address', 'other', 'adult']
  94. exclude = ['intern_notes']
  95. class Media:
  96. js = ('dropdown/js/base.js',)
  97. class BusinessCardForm(CheckForm):
  98. # this is the code, to change required to false if needed
  99. def __init__(self, *args, **kwargs):
  100. super().__init__(*args, **kwargs)
  101. self.fields['url_of_pic'].required = True
  102. class Meta:
  103. model = BusinessCard
  104. exclude = ['intern_notes']
  105. fields = ['project', 'data', 'variant', 'url_of_pic', 'sent_to']
  106. class Media:
  107. js = ('dropdown/js/base.js',)
  108. class ListForm(CheckForm):
  109. class Meta:
  110. model = List
  111. fields = ['domain', 'address']
  112. exclude = ['intern_notes']