X-Git-Url: https://git.mdrn.pl/cas.git/blobdiff_plain/a6bc469288a27a94f4c062a33701b7a57746dbb7..refs/heads/master:/src/accounts/urls.py?ds=inline diff --git a/src/accounts/urls.py b/src/accounts/urls.py index 6a18733..51f344e 100644 --- a/src/accounts/urls.py +++ b/src/accounts/urls.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- -from django.conf.urls import url +from django.urls import path from . import views + urlpatterns = [ - url(r'^$', views.account_profile), - url(r'^change_profile$', views.account_change_basic_profile), - url(r'^change_password$', views.account_change_password), + path('', views.ProfileView.as_view(), name='accounts_profile'), ]