diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-02-01 21:31:07 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-02-01 21:31:07 +0000 |
commit | 5798e8dcd507bc30c12bca7efa92185772bf0eee (patch) | |
tree | 9979281d3ca19151c0b5229d67b7d0e5a8ccfb47 /urls.py | |
parent | 5ae37eef8251fd9aa709f50658dc5ed26c19e1aa (diff) | |
download | troggle-5798e8dcd507bc30c12bca7efa92185772bf0eee.tar.gz troggle-5798e8dcd507bc30c12bca7efa92185772bf0eee.tar.bz2 troggle-5798e8dcd507bc30c12bca7efa92185772bf0eee.zip |
make nav cope with missing wallets
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -87,7 +87,7 @@ trogglepatterns = [ re_path(r'^admin/', admin.site.urls), # includes admin login & logout urls # Uploads - uploading a file - path('walletedit/', walletedit, name='walletedit'), # path=2020#01 + path('walletedit/', walletedit, name='walletedit'), path('walletedit/<path:path>', walletedit, name='walletedit'), # path=2020#01 path('photoupload/', photoupload, name='photoupload'), # restricted to current year path('photoupload/<path:folder>', photoupload, name='photoupload'), # restricted to current year |