From 1cfcbccf768f998a8da43e36ea5378e180c0a4ba Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Sun, 20 Jul 2025 17:17:31 +0200 Subject: [PATCH] must be lower case when specifying survey stations --- core/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/forms.py b/core/forms.py index ccdd307..c88a95f 100644 --- a/core/forms.py +++ b/core/forms.py @@ -215,12 +215,12 @@ class EntranceForm(ModelForm): tag_station = forms.CharField( required=False, widget=forms.TextInput(attrs={"size": "50","placeholder": "e.g. 1623.t2035-zb-03a"}), - label="Tag station: Survex station id, e.g. 1623.p2023-aa-01" + label="Tag station: Survex station id, e.g. 1623.p2023-aa-01 (must be lower case)" ) other_station = forms.CharField( required=False, widget=forms.TextInput(attrs={"size": "50","placeholder": "e.g. 1623.p2035-zb-03c"}), - label="Other station: Survex station id, e.g. 1623.gps2018-aa-01" + label="Other station: Survex station id, e.g. 1623.gps2018-aa-01 (must be lower case)" ) lat_wgs84 = forms.CharField(