summaryrefslogtreecommitdiff
path: root/apps/locations/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/locations/urls.py')
-rw-r--r--apps/locations/urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/locations/urls.py b/apps/locations/urls.py
new file mode 100644
index 0000000..669b828
--- /dev/null
+++ b/apps/locations/urls.py
@@ -0,0 +1,6 @@
+from django.conf.urls.defaults import *
+
+urlpatterns = patterns('',
+ #(r'(?P<slug>[0-9a-zA-Z_.-]+)/$', 'locations.views.list_view_region'),
+ (r'^$', 'locations.views.list_view'),
+)