diff options
Diffstat (limited to 'apps/locations/urls.py')
-rw-r--r-- | apps/locations/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/locations/urls.py b/apps/locations/urls.py index 2cad114..c49e684 100644 --- a/apps/locations/urls.py +++ b/apps/locations/urls.py @@ -2,6 +2,6 @@ from django.conf.urls.defaults import * from django.views.generic.simple import redirect_to,direct_to_template urlpatterns = patterns('', - #(r'(?P<slug>[0-9a-zA-Z_.-]+)/$', 'locations.views.list_view_region'), + (r'data/(?P<id>\d+)/$', 'locations.views.data_json'), (r'^$', direct_to_template, {'template': 'archives/map.html'}), ) |