cirlabs / django-project-template

A collection of development tasks and optimizations aimed at anyone doing news application development on tight deadlines in Django.
17 stars 10 forks source link

Change URL structure of index slightly #21

Closed mikejcorey closed 10 years ago

mikejcorey commented 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)

mikejcorey commented 10 years ago

Oops, should be index.html, not map.html