summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2021-04-07 21:53:43 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2021-04-07 21:53:43 +0100
commitb7d54111ba1b698ed57eb7b3a69896c7f6146cb5 (patch)
treed600752c7f67c0e1bd6cd6f6f8a4c5872e52d597 /core
parentbf7491348683ba592804ffe74ff75e0eadbcefcc (diff)
downloadtroggle-b7d54111ba1b698ed57eb7b3a69896c7f6146cb5.tar.gz
troggle-b7d54111ba1b698ed57eb7b3a69896c7f6146cb5.tar.bz2
troggle-b7d54111ba1b698ed57eb7b3a69896c7f6146cb5.zip
Import Therion files too
Diffstat (limited to 'core')
-rw-r--r--core/models_survex.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/models_survex.py b/core/models_survex.py
index deb70f4..989b9a6 100644
--- a/core/models_survex.py
+++ b/core/models_survex.py
@@ -197,9 +197,9 @@ class SingleScan(models.Model):
class TunnelFile(models.Model):
tunnelpath = models.CharField(max_length=200)
tunnelname = models.CharField(max_length=200)
- bfontcolours = models.BooleanField(default=False)
- manyscansfolders = models.ManyToManyField("ScansFolder") # implicitly links to SVX files
- scans = models.ManyToManyField("SingleScan") # implicitly links to SVX files
+ bfontcolours = models.BooleanField(default=False) # UNUSED now, can be deleted
+ manyscansfolders = models.ManyToManyField("ScansFolder") # implicitly links via folders to scans to SVX files
+ scans = models.ManyToManyField("SingleScan") # implicitly links via scans to SVX files
tunnelcontains = models.ManyToManyField("TunnelFile") # case when its a frame type
filesize = models.IntegerField(default=0)
npaths = models.IntegerField(default=0)