diff options
Diffstat (limited to 'core/forms.py')
-rw-r--r-- | core/forms.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/core/forms.py b/core/forms.py index ed334f6..8eb8f78 100644 --- a/core/forms.py +++ b/core/forms.py @@ -174,12 +174,7 @@ 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, widget=forms.TextInput(attrs={"size": "10"}), label="Northing (UTM) - random shit, being expunged" - ) - easting = forms.CharField( - required=False, widget=forms.TextInput(attrs={"size": "10"}), label="Easting (UTM) - random shit, being expunged" - ) + lat_wgs84 = forms.CharField( required=False, widget=forms.TextInput(attrs={"size": "10"}), label="Latitude (WSG84) - if no other location" ) |