summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2022-03-22 02:22:15 +0000
committerPhilip Sargent <philip.sargent@klebos.com>2022-03-22 02:22:15 +0000
commitf1b206ad34ab06772d648ced3ae0995538e26dd6 (patch)
treef0b0b2228dda793473dd5bc693c7b795f9136cc0 /urls.py
parent48171ae824bed1ebae764916c8da4f529455f28e (diff)
downloadtroggle-f1b206ad34ab06772d648ced3ae0995538e26dd6.tar.gz
troggle-f1b206ad34ab06772d648ced3ae0995538e26dd6.tar.bz2
troggle-f1b206ad34ab06772d648ced3ae0995538e26dd6.zip
fixing bugs after wookey session
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 28d5a58..eac48ba 100644
--- a/urls.py
+++ b/urls.py
@@ -50,13 +50,13 @@ Test VERY CAREFULLY for each change. It is fragile.
if settings.EXPOFILESREMOTE:
expofilesurls = [
- path('/<path:filepath>', expofiles_redirect, name="expofiles_redirect"), # to http://expo.survex.com/expofiles
+ path('<path:filepath>', expofiles_redirect, name="expofiles_redirect"), # to http://expo.survex.com/expofiles
path('', expofiles_redirect, {'filepath': ""}, name="expofiles_redirect"),
]
else:
expofilesurls = [
- path('/<path:filepath>', expofilessingle, name="single"), # local copy of EXPOFILES
path('', expofilessingle, {'filepath': ""}, name="single"),
+ path('<path:filepath>', expofilessingle, name="single"), # local copy of EXPOFILES
]
# see https://docs.djangoproject.com/en/dev/topics/auth/default/