summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/urls.py b/urls.py
index 7022d61..48eda7e 100644
--- a/urls.py
+++ b/urls.py
@@ -22,8 +22,9 @@ admin.autodiscover()
actualurlpatterns = patterns('',
-
- url(r'^millenialcaves/?$', views_survex.millenialcaves, name="millenialcaves"),
+ url(r'^testingurl/?$' , views_caves.millenialcaves, name="testing"),
+
+ url(r'^millenialcaves/?$', views_caves.millenialcaves, name="millenialcaves"),
url(r'^troggle$', views_other.frontpage, name="frontpage"),
url(r'^todo/$', views_other.todo, name="todo"),