1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
from crispy_forms.helper import FormHelper
from crispy_forms.layout import Button, ButtonHolder, Layout, Submit
from django import forms
from django.forms import inlineformset_factory
from django.urls import reverse
from ctrack.organisations.models import Address, IncidentReport, Organisation
class OrganisationCreateForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["name"].widget.attrs["class"] = "form-control form-control-lg"
self.fields["submode"].widget.attrs["class"] = "form-control"
self.fields["oes"].widget.attrs["class"] = "form-check-input"
self.fields["oes"].widget.attrs["type"] = "checkbox"
self.fields["designation_type"].widget.attrs["class"] = "form-control"
self.fields["registered_company_name"].widget.attrs["class"] = "form-control"
self.fields["registered_company_number"].widget.attrs["class"] = "form-control"
self.fields["comments"].widget.attrs["class"] = "form-control"
class Meta:
model = Organisation
fields = [
"name",
"submode",
"oes",
"designation_type",
"registered_company_name",
"registered_company_number",
"comments",
"active",
]
labels = {"oes": "OES"}
help_texts = {
"name": "Name of the organisation",
"submode": "e.g. Rail Maintenance, TOC, etc...",
"active": "Is this company an active participant in the NIS compliance regime?",
"designation_type": "This is probably defined in the Regulation",
}
class AddressCreateForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["type"].widget.attrs["class"] = "form-control"
self.fields["line1"].widget.attrs["class"] = "form-control"
self.fields["line2"].widget.attrs["class"] = "form-control"
self.fields["line3"].widget.attrs["class"] = "form-control"
self.fields["city"].widget.attrs["class"] = "form-control"
self.fields["county"].widget.attrs["class"] = "form-control"
self.fields["postcode"].widget.attrs["class"] = "form-control"
self.fields["country"].widget.attrs["class"] = "form-control"
self.fields["other_details"].widget.attrs["class"] = "form-control"
class Meta:
model = Address
fields = (
"type",
"line1",
"line2",
"line3",
"city",
"county",
"postcode",
"country",
"other_details",
)
# https://dev.to/zxenia/django-inline-formsets-with-class-based-views-and-crispy-forms-14o6
# good advice on setting up the inlineformset - with crispy forms too
AddressInlineFormSet = inlineformset_factory(
Organisation,
Address,
fields=(
"type",
"line1",
"line2",
"line3",
"city",
"county",
"postcode",
"country",
"other_details",
),
form=AddressCreateForm,
extra=2,
)
class IncidentReportForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
self.org = kwargs["org"]
self.reporting_person = kwargs["reporting_person"]
kwargs.pop("org")
kwargs.pop("reporting_person")
cancel_redirect = reverse("core:home")
super().__init__(*args, **kwargs)
self.helper = FormHelper(self)
self.helper.layout = Layout(
"person_involved",
"role",
"phone_number",
"email",
"internal_incident_number",
"date_time_incident_detected",
"incident_type",
"incident_status",
"incident_stage",
"summary",
"mitigations",
"others_informed",
"next_steps",
ButtonHolder(
Submit("submit", "Submit", css_class="btn-primary"),
Button(
"cancel",
"Cancel",
onclick=f"location.href='{cancel_redirect}';",
css_class="btn-danger",
),
),
)
def save(self, commit=True):
ir = super().save(commit=False)
ir.organisation = self.org
ir.reporting_person = self.reporting_person
if commit:
ir.save()
return ir
class Meta:
model = IncidentReport
fields = [
"person_involved",
"role",
"phone_number",
"email",
"internal_incident_number",
"date_time_incident_detected",
"incident_type",
"incident_status",
"incident_stage",
"summary",
"mitigations",
"others_informed",
"next_steps",
]
widgets = {
"date_time_incident_detected": forms.DateTimeInput(attrs={"type": "date"})
}
|