summaryrefslogtreecommitdiffstats
path: root/core/views/other.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2021-04-26 02:10:45 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2021-04-26 02:10:45 +0100
commit72fa8a5883a12e73402a4d4fda74a7b27faba49d (patch)
treeac2ff9507a36152a0b2a73e88878acbd568dda01 /core/views/other.py
parenta656ada67a5b7ff81634f0adcb553de295d624f4 (diff)
downloadtroggle-72fa8a5883a12e73402a4d4fda74a7b27faba49d.tar.gz
troggle-72fa8a5883a12e73402a4d4fda74a7b27faba49d.tar.bz2
troggle-72fa8a5883a12e73402a4d4fda74a7b27faba49d.zip
Making entrances work for pending caves
Diffstat (limited to 'core/views/other.py')
-rw-r--r--core/views/other.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/views/other.py b/core/views/other.py
index 45d781c..c864593 100644
--- a/core/views/other.py
+++ b/core/views/other.py
@@ -32,7 +32,7 @@ todo = '''
- But how does this interact with troggle/logbooksdump.py ?
-- deleted nefile() - check on deleted UploadFileForm using the editfile.html template which is about re-submitting
+- deleted newfile() - check on deleted UploadFileForm using the editfile.html template which is about re-submitting
a LBE aka TripReport
'''
@@ -44,12 +44,16 @@ def todos(request, module):
from troggle.core.TESTS.tests import todo as tests
from troggle.core.views.logbooks import todo as viewlogbooks
from troggle.parsers.logbooks import todo as parserslogbooks
+ from troggle.parsers.survex import todo as parserssurvex
+ from troggle.core.models.caves import todo as modelcaves
from troggle.core.forms import todo as forms
from troggle.core.templatetags.wiki_markup import todo as wiki
tododict = {'views/other': todo,
'tests': tests,
'views/logbooks': viewlogbooks,
'parsers/logbooks': parserslogbooks,
+ 'parsers/survex': parserssurvex,
+ 'core/models/caves': modelcaves,
'core/forms': forms,
'core/templatetags/wiki_markup': wiki}
return render(request,'core/todos.html', {'tododict': tododict})