From 8c5fdf5021481bb9ea99fa6309ebc67a5c57f5b5 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Fri, 7 May 2021 23:21:57 +0100 Subject: Entrance locations new report - url to cave --- core/forms.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core/forms.py') diff --git a/core/forms.py b/core/forms.py index 896a655..a2727f8 100644 --- a/core/forms.py +++ b/core/forms.py @@ -81,6 +81,8 @@ class EntranceForm(ModelForm): exact_station = forms.CharField(required=False) northing = forms.CharField(required=False) easting = forms.CharField(required=False) + lat_wgs84 = forms.CharField(required=False, widget=forms.TextInput(attrs={'size': '10'}), label="Latitude (WSG84)") + long_wgs84 = forms.CharField(required=False, widget=forms.TextInput(attrs={'size': '10'}), label="Longitude (WSG84)") alt = forms.CharField(required=False, label="Altitude (m)") url = forms.CharField(required = False, label="URL [usually blank]", widget=forms.TextInput(attrs={'size': '45'})) class Meta: -- cgit v1.2.3