summaryrefslogtreecommitdiffstats
path: root/core/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/forms.py')
-rw-r--r--core/forms.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/core/forms.py b/core/forms.py
index f0c30bf..e2124f1 100644
--- a/core/forms.py
+++ b/core/forms.py
@@ -182,8 +182,12 @@ class EntranceForm(ModelForm):
required=False,
widget=forms.TextInput(attrs={"size": "50"}), label="Other station: Survex station id, e.g. 1623.2023-xx-01.33"
)
- northing = forms.CharField(required=False)
- easting = forms.CharField(required=False)
+ northing = forms.CharField(
+ required=False, widget=forms.TextInput(attrs={"size": "10"}), label="Northing (UTM) - from survex data"
+ )
+ easting = forms.CharField(
+ required=False, widget=forms.TextInput(attrs={"size": "10"}), label="Easting (UTM) - from survex data"
+ )
lat_wgs84 = forms.CharField(
required=False, widget=forms.TextInput(attrs={"size": "10"}), label="Latitude (WSG84) - if no other location"
)