diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-30 21:32:53 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-30 21:32:53 +0100 |
commit | be0148d146263140961e3e47dccd54bc28827e0a (patch) | |
tree | f8b0cff33f2ca300d0fbf0d3125d816b379e0686 /urls.py | |
parent | 8f1d6e2cc22563bd4fca94f5e7e08085154e8262 (diff) | |
download | troggle-be0148d146263140961e3e47dccd54bc28827e0a.tar.gz troggle-be0148d146263140961e3e47dccd54bc28827e0a.tar.bz2 troggle-be0148d146263140961e3e47dccd54bc28827e0a.zip |
removing cruft, renaming badly named things
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ from troggle.core.views.other import troggle404, frontpage, todos, controlpanel, from troggle.core.views.other import exportlogbook from troggle.core.views.caves import ent, cavepage from troggle.core.views.logbooks import get_logbook_entries, logbookentry, logbookSearch -from troggle.core.views.logbooks import personindex, person, get_people +from troggle.core.views.logbooks import notablepersons, person, get_people from troggle.core.views.logbooks import expedition, personexpedition, Expeditions_tsvListView, Expeditions_jsonListView from troggle.core.views.prospect import prospecting_image from troggle.core.views.prospect import prospecting @@ -73,7 +73,7 @@ trogglepatterns = [ re_path(r'^caves$', caves.caveindex, name="caveindex"), re_path(r'^indxal.htm$', caves.caveindex, name="caveindex"), # ~420 hrefs to this url in expoweb files - re_path(r'^people/?$', personindex, name="personindex"), + re_path(r'^people/?$', notablepersons, name="notablepersons"), re_path(r'^admin/doc/', include('django.contrib.admindocs.urls')), # needs docutils Python module (http://docutils.sf.net/). re_path(r'^admin/', admin.site.urls), # includes admin login & logout urls |