diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-12-28 23:49:26 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-12-28 23:49:26 +0000 |
commit | dac3e6e2889b1d194069c1b8d1eb98fea6d1f7eb (patch) | |
tree | 8a6f48048fdd5939b940e5d4d09b3051ae2fea07 /core/models/caves.py | |
parent | e7444d20a4759cc3b1a9232c5129499ba5e1abfc (diff) | |
download | troggle-dac3e6e2889b1d194069c1b8d1eb98fea6d1f7eb.tar.gz troggle-dac3e6e2889b1d194069c1b8d1eb98fea6d1f7eb.tar.bz2 troggle-dac3e6e2889b1d194069c1b8d1eb98fea6d1f7eb.zip |
Entrances now do cookie / git author thing. + tidyup.
Diffstat (limited to 'core/models/caves.py')
-rw-r--r-- | core/models/caves.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/caves.py b/core/models/caves.py index 003db9b..3154acb 100644 --- a/core/models/caves.py +++ b/core/models/caves.py @@ -254,7 +254,7 @@ class Entrance(TroggleModel): lat_wgs84 = models.TextField(blank=True, null=True) # manually entered not calculated location_description = models.TextField(blank=True, null=True) long_wgs84 = models.TextField(blank=True, null=True) # manually entered not calculated - # map_description = models.TextField(blank=True, null=True) + # map_description = models.TextField(blank=True, null=True) # retired marking = models.CharField(max_length=2, choices=MARKING_CHOICES, default="?") marking_comment = models.TextField(blank=True, null=True) name = models.CharField(max_length=100, blank=True, null=True) |