diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-26 18:37:59 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-26 18:37:59 +0100 |
commit | bd647b99ec7bd4ae9d3b8b7a6f5b0c274f90bb2e (patch) | |
tree | c1ef3ef82bdc1cd28534017ab11126a4d0a7273b /core | |
parent | 0997fd09018455935e7ff28f10e001577f3a8dac (diff) | |
download | troggle-bd647b99ec7bd4ae9d3b8b7a6f5b0c274f90bb2e.tar.gz troggle-bd647b99ec7bd4ae9d3b8b7a6f5b0c274f90bb2e.tar.bz2 troggle-bd647b99ec7bd4ae9d3b8b7a6f5b0c274f90bb2e.zip |
rename tunnelname as dwgname
Diffstat (limited to 'core')
-rw-r--r-- | core/models/survex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/survex.py b/core/models/survex.py index b4dadc9..207a47f 100644 --- a/core/models/survex.py +++ b/core/models/survex.py @@ -201,7 +201,7 @@ class SingleScan(models.Model): class DrawingFile(models.Model): dwgpath = models.CharField(max_length=200) - tunnelname = models.CharField(max_length=200) + dwgname = models.CharField(max_length=200) bfontcolours = models.BooleanField(default=False) # UNUSED now, can be deleted manyscansfolders = models.ManyToManyField("Wallet") # implicitly links via folders to scans to SVX files scans = models.ManyToManyField("SingleScan") # implicitly links via scans to SVX files |