summaryrefslogtreecommitdiffstats
path: root/core/models/survex.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-10-07 02:26:52 +0300
committerPhilip Sargent <philip.sargent@gmail.com>2023-10-07 02:26:52 +0300
commit5f67af35f019e7054b9ce6de521b3fc96f5b0dc3 (patch)
treeb3ddad71a528cfb5ff07d8617e09bad4455d16c3 /core/models/survex.py
parentc3642f1ae434e8d1e5e7442670f936c4004bec98 (diff)
downloadtroggle-5f67af35f019e7054b9ce6de521b3fc96f5b0dc3.tar.gz
troggle-5f67af35f019e7054b9ce6de521b3fc96f5b0dc3.tar.bz2
troggle-5f67af35f019e7054b9ce6de521b3fc96f5b0dc3.zip
Better tag locations
Diffstat (limited to 'core/models/survex.py')
-rw-r--r--core/models/survex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/survex.py b/core/models/survex.py
index 542cfb8..68bae05 100644
--- a/core/models/survex.py
+++ b/core/models/survex.py
@@ -53,7 +53,7 @@ class SurvexStationLookUpManager(models.Manager):
class SurvexStation(models.Model):
name = models.CharField(max_length=100)
# block = models.ForeignKey("SurvexBlock", null=True, on_delete=models.SET_NULL)
- # block not used since 2020. survex stations objects are only used for entrnce locations and all taken from the .3d file
+ # block not used since 2020. survex stations objects are only used for entrance locations and all taken from the .3d file
objects = SurvexStationLookUpManager() # overwrites SurvexStation.objects and enables lookup()
x = models.FloatField(blank=True, null=True)
y = models.FloatField(blank=True, null=True)