user/ -> _/user/ to prevent duplicate URLs

This commit is contained in:
Jens Langhammer 2019-02-26 09:08:49 +01:00
parent 4ae31d409b
commit 983462f80d

View file

@ -27,9 +27,9 @@ core_urls = [
path('auth/process/', view.AuthenticationView.as_view(), name='auth-process'), path('auth/process/', view.AuthenticationView.as_view(), name='auth-process'),
path('auth/process/<slug:factor>/', view.AuthenticationView.as_view(), name='auth-process'), path('auth/process/<slug:factor>/', view.AuthenticationView.as_view(), name='auth-process'),
# User views # User views
path('user/', user.UserSettingsView.as_view(), name='user-settings'), path('_/user/', user.UserSettingsView.as_view(), name='user-settings'),
path('user/delete/', user.UserDeleteView.as_view(), name='user-delete'), path('_/user/delete/', user.UserDeleteView.as_view(), name='user-delete'),
path('user/change_password/', user.UserChangePasswordView.as_view(), path('_/user/change_password/', user.UserChangePasswordView.as_view(),
name='user-change-password'), name='user-change-password'),
# Overview # Overview
path('', overview.OverviewView.as_view(), name='overview'), path('', overview.OverviewView.as_view(), name='overview'),