summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2021-04-21 22:09:20 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2021-04-21 22:09:20 +0100
commit1968db62ad9bdc41f52afc26a8a929f5aeca4a19 (patch)
tree0d8b045ad795e69ae216946d4758ac06f801d5fb /urls.py
parentbcdb3572fa260052d76b54961dea9a9381381311 (diff)
downloadtroggle-1968db62ad9bdc41f52afc26a8a929f5aeca4a19.tar.gz
troggle-1968db62ad9bdc41f52afc26a8a929f5aeca4a19.tar.bz2
troggle-1968db62ad9bdc41f52afc26a8a929f5aeca4a19.zip
archeology on the logbook entry editing forms
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/urls.py b/urls.py
index d3855b8..23e21e6 100644
--- a/urls.py
+++ b/urls.py
@@ -91,8 +91,8 @@ trogglepatterns = [
# Logbook entries
re_path(r'^logbookentry/(?P<date>.*)/(?P<slug>.*)/?$', logbookentry,name="logbookentry"),
re_path(r'^newfile', newfile, name="newFile"), # oddly broken, needs investigating more
- re_path(r'^logbooksearch/(.*)/?$', logbookSearch),
- re_path(r'^logbook(?P<year>\d\d\d\d)\.(?P<extension>.*)/?$', downloadlogbook),
+ re_path(r'^logbooksearch/(.*)/?$', logbookSearch), # name 'search' not defined in views/logbooks.py
+ re_path(r'^logbook(?P<year>\d\d\d\d)\.(?P<extension>.*)/?$', downloadlogbook), # e.g. /logbook2019.html # working but old CSS in template
re_path(r'^logbook/?$', downloadlogbook, name="downloadlogbook"),
# Internal. editfile.html template uses these internally