summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2020-07-26 23:38:17 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2020-07-26 23:38:17 +0100
commit0403c68429244e7db92af9714fe48cbf3d896752 (patch)
tree935abb914f88101d97e4ba1f7cd966afcbe2a7e6 /urls.py
parentf1ceb38f5fe285a8747dd6258de4ecaebb49d67a (diff)
downloadtroggle-0403c68429244e7db92af9714fe48cbf3d896752.tar.gz
troggle-0403c68429244e7db92af9714fe48cbf3d896752.tar.bz2
troggle-0403c68429244e7db92af9714fe48cbf3d896752.zip
enabling django/admin/ auto documentn. functions
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index e64d7ce..227b4ef 100644
--- a/urls.py
+++ b/urls.py
@@ -89,7 +89,7 @@ actualurlpatterns = [
url(r'^cave/(?P<cave_id>[^/]+)/qm\.csv/?$', views_other.downloadQMs, name="downloadqms"),
url(r'^downloadqms$', views_other.downloadQMs),
- url(r'^admin/doc/?', include('django.contrib.admindocs.urls')), # needs docutils Python module (http://docutils.sf.net/).
+ url(r'^admin/doc/', include('django.contrib.admindocs.urls')), # needs docutils Python module (http://docutils.sf.net/).
url(r'^admin/', admin.site.urls),
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.