mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-21 23:01:52 +00:00
tunnelfile.scans name change for compatibility
This commit is contained in:
parent
c91aa4be47
commit
d6c4ffca5a
@ -217,8 +217,8 @@ 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")
|
||||
survexscans = models.ManyToManyField("SingleScan")
|
||||
manyscansfolders = models.ManyToManyField("ScansFolder")
|
||||
scans = models.ManyToManyField("SingleScan")
|
||||
survexblocks = models.ManyToManyField("SurvexBlock")
|
||||
tunnelcontains = models.ManyToManyField("TunnelFile") # case when its a frame type
|
||||
filesize = models.IntegerField(default=0)
|
||||
|
@ -135,7 +135,7 @@ def FindTunnelScan(tunnelfile, path):
|
||||
if scansfolder:
|
||||
tunnelfile.manyscansfolders.add(scansfolder)
|
||||
if scansfile:
|
||||
tunnelfile.survexscans.add(scansfile)
|
||||
tunnelfile.scans.add(scansfile)
|
||||
|
||||
elif path and not re.search(rb"\.(?:png|jpg|pdf|jpeg)$(?i)", path):
|
||||
name = os.path.split(path)[1]
|
||||
|
@ -23,7 +23,7 @@
|
||||
</td>
|
||||
|
||||
<td>
|
||||
{% for singlescan in tunnelfile.survexscans.all %}
|
||||
{% for singlescan in tunnelfile.scans.all %}
|
||||
<a href="{{singlescan.get_absolute_url}}">{{singlescan.name}}</a>
|
||||
{% endfor %}
|
||||
</td>
|
||||
|
Loading…
Reference in New Issue
Block a user