diff --git a/contrib/frontends/django/nntpchan/nntpchan/frontend/urls.py b/contrib/frontends/django/nntpchan/nntpchan/frontend/urls.py index 661ea55..3deeb43 100644 --- a/contrib/frontends/django/nntpchan/nntpchan/frontend/urls.py +++ b/contrib/frontends/django/nntpchan/nntpchan/frontend/urls.py @@ -12,5 +12,5 @@ urlpatterns = [ url(r'^b/(?P[a-zA-Z0-9\.]+[a-zA-Z0-9])/(?P[0-9]+)/$', views.BoardView.as_view(), name='board'), url(r'^t/(?P[a-fA-F0-9\.]{40})/$', views.ThreadView.as_view(), name='thread'), url(r'captcha.png', views.create_captcha, name='captcha'), - url(r'^$', views.FrontPageView.as_view(), name='index'), + url(r'^$', views.FrontPageView.as_view(), name='frontpage'), ] diff --git a/contrib/frontends/django/nntpchan/nntpchan/templates/frontend/base.html b/contrib/frontends/django/nntpchan/nntpchan/templates/frontend/base.html index 2a8af3a..a34178f 100644 --- a/contrib/frontends/django/nntpchan/nntpchan/templates/frontend/base.html +++ b/contrib/frontends/django/nntpchan/nntpchan/templates/frontend/base.html @@ -14,7 +14,7 @@