summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2021-04-11 20:00:09 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2021-04-11 20:00:09 +0100
commitbc9b4f508b9b531500bac60ed7c7f8f3766b27f0 (patch)
treef8aa8e7db9493c1192b9f1b503a42a6ef6ec6044 /urls.py
parent7f5ac93cc6b8875d809438debca14ac827a51f1a (diff)
downloadtroggle-bc9b4f508b9b531500bac60ed7c7f8f3766b27f0.tar.gz
troggle-bc9b4f508b9b531500bac60ed7c7f8f3766b27f0.tar.bz2
troggle-bc9b4f508b9b531500bac60ed7c7f8f3766b27f0.zip
Public Import Errors webpage
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/urls.py b/urls.py
index abff59e..1e0b080 100644
--- a/urls.py
+++ b/urls.py
@@ -10,7 +10,7 @@ from django.urls import reverse, resolve
from troggle.core.views import surveys, logbooks, other, caves, statistics, survex
from troggle.core.views.other import troggle404, frontpage
from troggle.core.views.caves import ent, prospecting_image, cavepage
-from troggle.core.views.statistics import pathsreport, stats
+from troggle.core.views.statistics import pathsreport, stats, dataissues
from troggle.core.views.expo import expofiles_redirect, expofilessingle, expopage, editexpopage, mediapage
from troggle.core.views.survex import survexcaveslist, survexcavesingle, svx
from troggle.core.views.auth import expologin, expologout
@@ -118,8 +118,9 @@ trogglepatterns = [
url(r'^statistics/?$', statistics.stats, name="stats"),
- url(r'^stats/?$', statistics.stats, name="stats"),
- url(r'^pathsreport.*$', statistics.pathsreport, name="pathsreport"),
+ url(r'^stats/?$', statistics.stats, name="stats"),
+ url(r'^pathsreport.*$', statistics.pathsreport, name="pathsreport"),
+ url(r'^dataissues/?$', statistics.dataissues, name="dataissues"),
url(r'^controlpanel/?$', other.controlPanel, name="controlpanel"),