mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-04-03 09:21:48 +01:00
QMs grayed out for survex files 2014 and earlier
This commit is contained in:
parent
7f335e082c
commit
25c425cff8
@ -296,7 +296,10 @@ class Wallet(models.Model):
|
|||||||
if waldata["qms written"]:
|
if waldata["qms written"]:
|
||||||
ticks["Q"] = "green"
|
ticks["Q"] = "green"
|
||||||
else:
|
else:
|
||||||
ticks["Q"] = survexok
|
ticks["Q"] = survexok
|
||||||
|
if int(self.year()) < 2015:
|
||||||
|
ticks["Q"] = "lightgrey"
|
||||||
|
|
||||||
|
|
||||||
# Notes, Plan, Elevation; Tunnel
|
# Notes, Plan, Elevation; Tunnel
|
||||||
if waldata["electronic survey"]:
|
if waldata["electronic survey"]:
|
||||||
|
@ -143,10 +143,12 @@ def CopyWalletData(wallet):
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# this iterates through the scans directories (either here or on the remote server)
|
|
||||||
# and builds up the models we can access later
|
|
||||||
def load_all_scans():
|
def load_all_scans():
|
||||||
|
'''This iterates through the scans directories (either here or on the remote server)
|
||||||
|
and builds up the models we can access later.
|
||||||
|
It does NOT read or validate anything in the JSON data attached to each wallet. Those checks
|
||||||
|
are done at runtime, when a wallet is accessed, not at import time.
|
||||||
|
'''
|
||||||
print(' - Loading Survey Scans')
|
print(' - Loading Survey Scans')
|
||||||
|
|
||||||
SingleScan.objects.all().delete()
|
SingleScan.objects.all().delete()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user