gestiojeux/accounts/urls.py

14 lines
369 B
Python
Raw Normal View History

from django.urls import include, path
from .views import PasswordChangeView, AccountSettingsView
app_name = "accounts"
accounts_patterns = [
path("change_password/", PasswordChangeView.as_view(), name="change_password"),
path("settings/", AccountSettingsView.as_view(), name="account_settings"),
]
urlpatterns = [
path("", include(accounts_patterns)),
]