blob: 2cad1144ebe652afd8c4eb7bb7cd6bdf5bab162c (
plain)
1
2
3
4
5
6
7
|
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'^$', direct_to_template, {'template': 'archives/map.html'}),
)
|