summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-08-10 23:17:03 +0300
committerPhilip Sargent <philip.sargent@gmail.com>2023-08-10 23:17:03 +0300
commitd3c17361192fbdea57eb3ef339375f671cc69ebf (patch)
treef3faafe147cce21f2ce894ba1c020eac27d04a08 /urls.py
parentda8e22c85607681dd3bbda92bddf593139a11f0e (diff)
downloadtroggle-d3c17361192fbdea57eb3ef339375f671cc69ebf.tar.gz
troggle-d3c17361192fbdea57eb3ef339375f671cc69ebf.tar.bz2
troggle-d3c17361192fbdea57eb3ef339375f671cc69ebf.zip
extending logbook entry edit
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index b398690..7edc26d 100644
--- a/urls.py
+++ b/urls.py
@@ -110,7 +110,7 @@ trogglepatterns = [
path('dwguploadnogit/', dwgupload, {'gitdisable': 'yes'}, name='dwguploadnogit'), # used in testing
path('dwguploadnogit/<path:folder>', dwgupload, {'gitdisable': 'yes'}, name='dwguploadnogit'), # used in testing
path('logbookedit/', logbookedit, name='logbookedit'),
- path('logbookedit/<int:year>', logbookedit, name='logbookedit'), # year=2023
+ path('logbookedit/<slug:slug>', logbookedit, name='logbookedit'),
# Renaming an uploaded file
path('expofilerename/<path:filepath>', expofilerename, name='expofilerename'),