Commit 5c622862 authored by Michal Čihař's avatar Michal Čihař

Move rewritten views to one location

parent aacb65d1
......@@ -72,9 +72,6 @@ urlpatterns = patterns(
},
name='registration_activate'
),
url(
r'^login/$', 'accounts.views.weblate_login', name='login',
),
url(
r'^logout/$',
auth_views.logout,
......@@ -120,10 +117,8 @@ urlpatterns = patterns(
{'extra_context': {'title': _('Password reset')}},
name='auth_password_reset_done'
),
url(
r'^profile/',
'accounts.views.user_profile',
name='profile',
),
url(r'^profile/', 'accounts.views.user_profile', name='profile'),
url(r'^login/$', 'accounts.views.weblate_login', name='login'),
url(r'', include('social.apps.django_app.urls', namespace='social')),
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment