mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2026-02-08 14:37:53 +00:00
tunnelpath to dwgpath
This commit is contained in:
@@ -200,7 +200,7 @@ class SingleScan(models.Model):
|
||||
return "Survey Scan Image: " + str(self.name) + " in " + str(self.scansfolder)
|
||||
|
||||
class DrawingFile(models.Model):
|
||||
tunnelpath = models.CharField(max_length=200)
|
||||
dwgpath = models.CharField(max_length=200)
|
||||
tunnelname = models.CharField(max_length=200)
|
||||
bfontcolours = models.BooleanField(default=False) # UNUSED now, can be deleted
|
||||
manyscansfolders = models.ManyToManyField("ScansFolder") # implicitly links via folders to scans to SVX files
|
||||
@@ -211,4 +211,4 @@ class DrawingFile(models.Model):
|
||||
survexfiles = models.ManyToManyField("SurvexFile") # direct link to SVX files - not populated yet
|
||||
|
||||
class Meta:
|
||||
ordering = ('tunnelpath',)
|
||||
ordering = ('dwgpath',)
|
||||
Reference in New Issue
Block a user