diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-05-07 23:21:57 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-05-07 23:21:57 +0100 |
commit | 8c5fdf5021481bb9ea99fa6309ebc67a5c57f5b5 (patch) | |
tree | 124b6fe2de9d8d033ac0d68745ead89db99c5308 /core/forms.py | |
parent | 1ff723554cf46dc644a0fa2a295ef175bc43b4d5 (diff) | |
download | troggle-8c5fdf5021481bb9ea99fa6309ebc67a5c57f5b5.tar.gz troggle-8c5fdf5021481bb9ea99fa6309ebc67a5c57f5b5.tar.bz2 troggle-8c5fdf5021481bb9ea99fa6309ebc67a5c57f5b5.zip |
Entrance locations new report - url to cave
Diffstat (limited to 'core/forms.py')
-rw-r--r-- | core/forms.py | 2 |
1 files changed, 2 insertions, 0 deletions
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: |