diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-26 17:46:23 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-26 17:46:23 +0100 |
commit | f0d291f527940cc3af8a0973a1fbb06cd1f949d7 (patch) | |
tree | c7227dfbd8854a3f0f0426dea4dd7f58bddf4ff3 /urls.py | |
parent | b8803c8e5b08c1439a242cea1a04f30641235220 (diff) | |
download | troggle-f0d291f527940cc3af8a0973a1fbb06cd1f949d7.tar.gz troggle-f0d291f527940cc3af8a0973a1fbb06cd1f949d7.tar.bz2 troggle-f0d291f527940cc3af8a0973a1fbb06cd1f949d7.zip |
rename surveyscansfolder(s) to scanwallet(s)
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ from django.contrib import auth from django.urls import reverse, resolve from troggle.core.views import caves, statistics, survex -from troggle.core.views.surveys import scansingle, surveyscansfolder, surveyscansfolders, dwgdata, dwgfilesingle, dwgfileupload +from troggle.core.views.surveys import scansingle, scanswallet, scanswallets, dwgdata, dwgfilesingle, dwgfileupload from troggle.core.views.other import troggle404, frontpage, todos, controlpanel, frontpage, scanupload from troggle.core.views.other import downloadlogbook, ajax_QM_number, downloadQMs from troggle.core.views.caves import ent, cavepage @@ -141,8 +141,8 @@ trogglepatterns = [ re_path(r'^survexfile/caves$', survex.survexcaveslist, name="survexcaveslist"), # auto slash not working re_path(r'^survexfile/(?P<survex_cave>.*)$', survex.survexcavesingle, name="survexcavessingle"), - re_path(r'^survey_scans/$', surveyscansfolders, name="surveyscansfolders"), - re_path(r'^survey_scans/(?P<path>[^/]+)/$', surveyscansfolder, name="surveyscansfolder"), + re_path(r'^survey_scans/$', scanswallets, name="scanswallets"), + re_path(r'^survey_scans/(?P<path>[^/]+)/$', scanswallet, name="scanswallet"), re_path(r'^survey_scans/(?P<path>[^/]+)/(?P<file>[^/]+)$', scansingle, name="scansingle"), |