rename 'home' view as 'index', fixes DEBUG page behavior

This commit is contained in:
2019-06-29 09:25:57 -05:00
parent abce0262f3
commit d34fb18949
4 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ admin.sites.site = admin.site
admin.autodiscover()
urlpatterns = [
url(r'^$', TemplateView.as_view(template_name='index.html'), name='home'),
url(r'^$', TemplateView.as_view(template_name='index.html'), name='index'),
url(r'^dice/', include('dice.urls')),
url(r'^dispatch/', include('dispatch.urls')),