summaryrefslogtreecommitdiffstats
path: root/engagements/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'engagements/forms.py')
-rw-r--r--engagements/forms.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/engagements/forms.py b/engagements/forms.py
index e3ac85a..2532892 100644
--- a/engagements/forms.py
+++ b/engagements/forms.py
@@ -16,6 +16,10 @@ class EngagementEffortReportingCreateForm(forms.ModelForm):
class Meta:
model = EngagementEffort
+ help_texts = {
+ "is_planned": ("To distinguish planned events from retrospective recording."),
+ "officers": ("Include yourself here but you can also add effort for your colleagues.")
+ }
fields = [
'is_planned',
'proposed_start_date',
@@ -63,7 +67,7 @@ class EngagementEffortRegulationCreateForm(forms.ModelForm):
"notes",
]
help_texts = {
- "is_planned": ("<br><small><em>To distinguish planned events from retrospective recording</em></small>")
+ "is_planned": ("To distinguish planned events from retrospective recording.")
}
widgets = {
"proposed_start_date": forms.DateTimeInput(
@@ -93,7 +97,7 @@ class EngagementEffortPlanningCreateForm(forms.ModelForm):
"notes",
]
help_texts = {
- "is_planned": ("<br><small><em>To distinguish planned events from retrospective recording</em></small>")
+ "is_planned": ("To distinguish planned events from retrospective recording.")
}
widgets = {
"proposed_start_date": forms.DateTimeInput(
@@ -126,6 +130,9 @@ class EngagementEffortTravelCreateForm(forms.ModelForm):
"proposed_start_date": forms.DateTimeInput(attrs={"type": "datetime-local"}),
"proposed_end_date": forms.DateTimeInput(attrs={"type": "datetime-local"}),
}
+ help_texts = {
+ "is_planned": ("To distinguish planned events from retrospective recording.")
+ }
class EngagementEffortCreateForm(forms.ModelForm):