summaryrefslogtreecommitdiffstats
path: root/core/views/other.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2021-04-27 00:32:01 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2021-04-27 00:32:01 +0100
commite236e792ec7c38248a496e8443c4e549c383c93a (patch)
treefcc9e9d847189e0366753d5811f02c00469a02ae /core/views/other.py
parent9e7414e0e002d6a8c3c3458fb9557ffd46ddd455 (diff)
downloadtroggle-e236e792ec7c38248a496e8443c4e549c383c93a.tar.gz
troggle-e236e792ec7c38248a496e8443c4e549c383c93a.tar.bz2
troggle-e236e792ec7c38248a496e8443c4e549c383c93a.zip
todo: parsing caves
Diffstat (limited to 'core/views/other.py')
-rw-r--r--core/views/other.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/views/other.py b/core/views/other.py
index 0f74657..2a2edee 100644
--- a/core/views/other.py
+++ b/core/views/other.py
@@ -43,6 +43,7 @@ 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.caves import todo as parserscaves
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
@@ -51,6 +52,7 @@ def todos(request, module):
tododict = {'views/other': todo,
'tests': tests,
'views/logbooks': viewlogbooks,
+ 'parsers/caves': parserscaves,
'parsers/logbooks': parserslogbooks,
'parsers/survex': parserssurvex,
'core/models/caves': modelcaves,