summaryrefslogtreecommitdiffstats
path: root/core/views/other.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2024-12-29 23:37:20 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2024-12-29 23:37:20 +0000
commitf73f1b50fe73631ce147ea59bd62d4eaac10cd69 (patch)
treeeebb7b02d10cf5a5e9ece139cd1a13f9785a6cd5 /core/views/other.py
parent1ddd4da27bf1aa1594cdfc0477e016932c735026 (diff)
downloadtroggle-f73f1b50fe73631ce147ea59bd62d4eaac10cd69.tar.gz
troggle-f73f1b50fe73631ce147ea59bd62d4eaac10cd69.tar.bz2
troggle-f73f1b50fe73631ce147ea59bd62d4eaac10cd69.zip
Bug fixes
Diffstat (limited to 'core/views/other.py')
-rw-r--r--core/views/other.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/views/other.py b/core/views/other.py
index 7c4c232..ce6c182 100644
--- a/core/views/other.py
+++ b/core/views/other.py
@@ -31,6 +31,9 @@ progress and task list (deprecated as we do not have individual user login).
todo = """
- [Low priority] Fix Login page so that it produces the frontpage or
redirects to the page which produced the login prompt requirement.
+
+- Statement on login page that "essential cookies" are used when you login
+ to the website.
"""
@@ -51,6 +54,7 @@ def todos(request, module):
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
+ from troggle.core.views.logbook_edit import todo as viewlogbook_edit
from troggle.parsers.caves import todo as parserscaves
from troggle.parsers.drawings import todo as parsersdrawings
from troggle.parsers.locations import todo as parserslocations
@@ -72,6 +76,7 @@ def todos(request, module):
"views/survex": viewsurvex,
"views/uploads": viewuploads,
"views/wallets_edit": viewwallets_edit,
+ "views/logbook_edit": viewlogbook_edit,
"parsers/caves": parserscaves,
"parsers/drawings": parsersdrawings,
"parsers/locations": parserslocations,