summaryrefslogtreecommitdiffstats
path: root/core/views/other.py
diff options
context:
space:
mode:
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})