diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-10-12 00:25:24 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-10-12 00:25:24 +0300 |
commit | 3b1fd56fe4b09ffc9203c3109fcd05ff440732ef (patch) | |
tree | d7bd772024943448259d50f2165901612b054d1c /core/models/caves.py | |
parent | a2bddaeb89c7d5ada35aaade93d06196672ec0bc (diff) | |
download | troggle-3b1fd56fe4b09ffc9203c3109fcd05ff440732ef.tar.gz troggle-3b1fd56fe4b09ffc9203c3109fcd05ff440732ef.tar.bz2 troggle-3b1fd56fe4b09ffc9203c3109fcd05ff440732ef.zip |
REMOVED northing and easting fields
Diffstat (limited to 'core/models/caves.py')
-rw-r--r-- | core/models/caves.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/models/caves.py b/core/models/caves.py index 3079ed1..bd35461 100644 --- a/core/models/caves.py +++ b/core/models/caves.py @@ -236,7 +236,6 @@ class Entrance(TroggleModel): alt = models.TextField(blank=True, null=True) approach = models.TextField(blank=True, null=True) bearings = models.TextField(blank=True, null=True) - easting = models.TextField(blank=True, null=True) # apparently? manually entered not calculated entrance_description = models.TextField(blank=True, null=True) explorers = models.TextField(blank=True, null=True) filename = models.CharField(max_length=200) @@ -250,7 +249,6 @@ class Entrance(TroggleModel): marking = models.CharField(max_length=2, choices=MARKING_CHOICES) marking_comment = models.TextField(blank=True, null=True) name = models.CharField(max_length=100, blank=True, null=True) - northing = models.TextField(blank=True, null=True) # apparently? manually entered not calculated other_description = models.TextField(blank=True, null=True) photo = models.TextField(blank=True, null=True) slug = models.SlugField(max_length=50, unique=True, default="default_slug_id") |