diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-08-10 23:17:03 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-08-10 23:17:03 +0300 |
commit | d3c17361192fbdea57eb3ef339375f671cc69ebf (patch) | |
tree | f3faafe147cce21f2ce894ba1c020eac27d04a08 /urls.py | |
parent | da8e22c85607681dd3bbda92bddf593139a11f0e (diff) | |
download | troggle-d3c17361192fbdea57eb3ef339375f671cc69ebf.tar.gz troggle-d3c17361192fbdea57eb3ef339375f671cc69ebf.tar.bz2 troggle-d3c17361192fbdea57eb3ef339375f671cc69ebf.zip |
extending logbook entry edit
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'), |