remove unused LogoutView and corresponding url pattern

This commit is contained in:
Jan Dittberner 2015-01-20 00:47:24 +01:00
parent d78bad06b7
commit f211b535cf
3 changed files with 3 additions and 18 deletions

View file

@ -4,7 +4,6 @@ from django.conf.urls import patterns, url
from .views import (
IndexView,
LogoutView,
UserDashboardView,
)
@ -14,6 +13,4 @@ urlpatterns = patterns(
url(r'^$', IndexView.as_view(), name='dashboard'),
url(r'^user/(?P<slug>[\w0-9@.+-_]+)/$',
UserDashboardView.as_view(), name='customer_dashboard'),
url(r'^logout/',
LogoutView.as_view(), name='logout'),
)