Closed mikejcorey closed 10 years ago
from: (r'^$', TemplateView.as_view(template_name='index.html')),
to: url(r'^$', TemplateView.as_view(template_name='map.html'), name='index'),
(This allows for easier calling in the template)
Oops, should be index.html, not map.html
from: (r'^$', TemplateView.as_view(template_name='index.html')),
to: url(r'^$', TemplateView.as_view(template_name='map.html'), name='index'),
(This allows for easier calling in the template)