summaryrefslogtreecommitdiffstats
path: root/engagements/forms.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-09-12 12:06:13 +0100
committerMatthew Lemon <y@yulqen.org>2024-09-12 12:06:13 +0100
commitf1c3af915dcf2746dcd65082bf36a55fda6ee773 (patch)
treecaf8e07cec9865b26f4397dcd83bef9cdbb42f5e /engagements/forms.py
parent15b2dc965bfe2271d73476fcf9ff636c60113908 (diff)
Moved Edit Engagement form to a template include
Diffstat (limited to 'engagements/forms.py')
-rw-r--r--engagements/forms.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/engagements/forms.py b/engagements/forms.py
index cccaf3b..401d6a9 100644
--- a/engagements/forms.py
+++ b/engagements/forms.py
@@ -225,8 +225,10 @@ class EngagementCreateForm(forms.ModelForm):
"officers": "Inspectors",
}
help_texts = {
- "proposed_start_date": "<small><em>YYYY-MM-DD</em></small>",
- "proposed_end_date": "<small><em>YYYY-MM-DD</em></small>",
+ "external_party": "These are the people you are dealing with.",
+ "proposed_start_date": "YYYY-MM-DD",
+ "proposed_end_date": "YYYY-MM-DD",
+ "officers": "Use CTRL to select multiple if required.",
}
widgets = {
"proposed_start_date": forms.DateInput(attrs={"type": "date"}),