diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-06-04 19:32:26 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-06-04 19:32:26 +0100 |
commit | c6d68749e06892ce6607819081e4639a9d589409 (patch) | |
tree | a8fdc5ecbc197b10c712f491da10c57b970a0f15 /core/views_caves.py | |
parent | ae89a707ece67bc89eb165d86aaf46e55411eb3f (diff) | |
download | troggle-c6d68749e06892ce6607819081e4639a9d589409.tar.gz troggle-c6d68749e06892ce6607819081e4639a9d589409.tar.bz2 troggle-c6d68749e06892ce6607819081e4639a9d589409.zip |
Comment-out all ScannedImage objects
Diffstat (limited to 'core/views_caves.py')
-rw-r--r-- | core/views_caves.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/views_caves.py b/core/views_caves.py index d741671..432eef9 100644 --- a/core/views_caves.py +++ b/core/views_caves.py @@ -278,9 +278,9 @@ def survey(request,year,wallet_number): if wallet_number!='': current_survey=Survey.objects.filter(expedition=current_expedition,wallet_number=wallet_number)[0] - notes=current_survey.scannedimage_set.filter(contents='notes') - planSketches=current_survey.scannedimage_set.filter(contents='plan') - elevationSketches=current_survey.scannedimage_set.filter(contents='elevation') + # notes=current_survey.scannedimage_set.filter(contents='notes') + # planSketches=current_survey.scannedimage_set.filter(contents='plan') + # elevationSketches=current_survey.scannedimage_set.filter(contents='elevation') return render(request,'survey.html', locals()) |