diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-21 22:09:20 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-21 22:09:20 +0100 |
commit | 1968db62ad9bdc41f52afc26a8a929f5aeca4a19 (patch) | |
tree | 0d8b045ad795e69ae216946d4758ac06f801d5fb /urls.py | |
parent | bcdb3572fa260052d76b54961dea9a9381381311 (diff) | |
download | troggle-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |