diff options
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 15 |
1 files changed, 5 insertions, 10 deletions
@@ -1,15 +1,12 @@ from django.conf import settings -from django.contrib import admin, auth -from django.urls import include, path, re_path, resolve, reverse -from django.views.generic.base import RedirectView -from django.views.generic.edit import UpdateView -from django.views.generic.list import ListView +from django.contrib import admin +from django.urls import include, path, re_path from troggle.core.views import statistics, survex from troggle.core.views.auth import expologin, expologout from troggle.core.views.caves import (cave3d, caveEntrance, caveindex, cavepage, caveQMs, edit_cave, - edit_entrance, ent, get_entrances, qm) + edit_entrance, get_entrances, qm) from troggle.core.views.drawings import dwgallfiles, dwgfilesingle from troggle.core.views.editor_helpers import image_selector, new_image_form from troggle.core.views.expo import (editexpopage, expofiles_redirect, @@ -21,12 +18,10 @@ from troggle.core.views.logbooks import (Expeditions_jsonListView, logbookentry, notablepersons, person, personexpedition) from troggle.core.views.other import (controlpanel, exportlogbook, frontpage, - todos, troggle404) -from troggle.core.views.prospect import prospecting, prospecting_image + todos) +from troggle.core.views.prospect import prospecting from troggle.core.views.scans import (allscans, cavewallets, scansingle, walletslistperson, walletslistyear) -from troggle.core.views.statistics import dataissues, pathsreport, stats -from troggle.core.views.survex import survexcavesingle, survexcaveslist, svx from troggle.core.views.uploads import dwgupload, photoupload, scanupload """This sets the actualurlpatterns[] and urlpatterns[] lists which django uses |