diff options
author | luxagraf <sng@luxagraf.net> | 2019-01-09 13:29:17 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-01-09 13:29:17 -0600 |
commit | be0bb4e123240ac3ce02431b974c82f8f05d843b (patch) | |
tree | e2da7ac44be955ad5cbf32c0a35dc507ba63e844 /apps/accounts/urls.py | |
parent | d5f430d3e1e2b274d8d8f744251e8b6b4b72ebd9 (diff) |
latest changes
Diffstat (limited to 'apps/accounts/urls.py')
-rw-r--r-- | apps/accounts/urls.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/accounts/urls.py b/apps/accounts/urls.py index d9ee327..5cad311 100644 --- a/apps/accounts/urls.py +++ b/apps/accounts/urls.py @@ -2,9 +2,15 @@ from django.urls import path from . import views +app_name = "accounts" urlpatterns = [ path( + r'change-profile/', + views.ProfileView.as_view(), + name="change-profile" + ), + path( r'', views.SettingsListView.as_view(), name="settings" |