summaryrefslogtreecommitdiffstats
path: root/core/views/other.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-11-04 18:28:14 +0200
committerPhilip Sargent <philip.sargent@gmail.com>2023-11-04 18:28:14 +0200
commit3c62defdfde5d048923222d761a4edc1e9d695c6 (patch)
tree5b995b1903bc96e2b78f0c0fae6dc589c7d91219 /core/views/other.py
parenta63275f9137eee453c6a4ce86b2d35c4eba3f06c (diff)
downloadtroggle-3c62defdfde5d048923222d761a4edc1e9d695c6.tar.gz
troggle-3c62defdfde5d048923222d761a4edc1e9d695c6.tar.bz2
troggle-3c62defdfde5d048923222d761a4edc1e9d695c6.zip
fixes and bugfix
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 4d7d3f1..444f0e2 100644
--- a/core/views/other.py
+++ b/core/views/other.py
@@ -46,6 +46,7 @@ def todos(request, module):
from troggle.core.views.drawings import todo as viewdrawings
from troggle.core.views.logbooks import todo as viewlogbooks
from troggle.core.views.other import todo as viewother
+ from troggle.core.views.scans import todo as viewscans
from troggle.core.views.survex import todo as viewsurvex
from troggle.core.views.uploads import todo as viewuploads
from troggle.core.views.wallets_edit import todo as viewwallets_edit
@@ -66,6 +67,7 @@ def todos(request, module):
"views/drawings": viewdrawings,
"views/logbooks": viewlogbooks,
"views/other": todo,
+ "views/scans": viewscans,
"views/survex": viewsurvex,
"views/uploads": viewuploads,
"views/wallets_edit": viewwallets_edit,