diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-08-02 23:53:35 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-08-02 23:53:35 +0100 |
commit | d61c2b20c832557b4ce65df53bc94c6c1bd1ef65 (patch) | |
tree | e7802f319a2b4547350b43ede3dcd45b6c9166c5 /urls.py | |
parent | 3dcc8883cd69d4289bb89f6fa3180d63dea542b9 (diff) | |
download | troggle-d61c2b20c832557b4ce65df53bc94c6c1bd1ef65.tar.gz troggle-d61c2b20c832557b4ce65df53bc94c6c1bd1ef65.tar.bz2 troggle-d61c2b20c832557b4ce65df53bc94c6c1bd1ef65.zip |
Deleted archaisms and new comments
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -6,7 +6,7 @@ from django.contrib import admin from django.urls import reverse, resolve from troggle.core import views_other, views_caves, views_logbooks, views_statistics, views_survex, view_surveys -from troggle.core.views_other import logbook_entry_suggestions +#from troggle.core.views_other import logbook_entry_suggestions from troggle.core.views_caves import ent, prospecting_image from troggle.core.views_statistics import pathsreport, stats from flatpages import views as flatviews @@ -39,7 +39,7 @@ actualurlpatterns = [ url(r'^people/?$', views_logbooks.personindex, name="personindex"), url(r'^newqmnumber/?$', views_other.ajax_QM_number, ), - url(r'^lbo_suggestions/?$', logbook_entry_suggestions), #broken +# url(r'^lbo_suggestions/?$', logbook_entry_suggestions), #broken, removed. # url(r'^person/(?P<person_id>\d*)/?$', views_logbooks.person), url(r'^person/(?P<first_name>[A-Z]*[a-z\-\'&;]*)[^a-zA-Z]*(?P<last_name>[a-z\-\']*[^a-zA-Z]*[A-Z]*[a-z\-&;]*)/?', views_logbooks.person, name="person"), # url(r'^person/(\w+_\w+)$', views_logbooks.person, name="person"), @@ -96,6 +96,8 @@ actualurlpatterns = [ url(r'^accounts/', include('registration.backends.default.urls')), # needed to log in! # url(r'^profiles/', include('profiles.urls')), # not used ? Delete this entire app then. +# url(r'^map/', .........), # Intercepted by Apache. Yields OpenStreetMap. Redirects to expoweb/map + url(r'^survexblock/(.+)$', views_caves.survexblock, name="survexblock"), url(r'^survexfile/(?P<survex_file>.*?)\.svx$', views_survex.svx, name="svx"), url(r'^survexfile/(?P<survex_file>.*?)\.3d$', views_survex.threed, name="threed"), |