diff --git a/accounts/urls.py b/accounts/urls.py index bb114ab..db313f2 100644 --- a/accounts/urls.py +++ b/accounts/urls.py @@ -4,7 +4,7 @@ from .views import * urlpatterns = patterns('', url(r'^$', RedirectView.as_view( - url='/', permanent=True), name='store_index'), + url='/', permanent=True), name='accounts_index'), url(r'^login/$', LoginView.as_view(), - name='store_cart_detail'), + name='accounts_login'), ) diff --git a/batiskaf/settings.py b/batiskaf/settings.py index 2adae5c..c1d32d7 100644 --- a/batiskaf/settings.py +++ b/batiskaf/settings.py @@ -42,7 +42,7 @@ MESSAGE_TAGS = { AUTH_USER_MODEL = 'accounts.Profile' -LOGIN_URL = '/account/login/' +#LOGIN_URL = '/account/login/' LOGOUT_URL = '/account/logout/'