forked from DGNum/gestiojeux
fee31ab07b
Be careful there is no User migration
13 lines
369 B
Python
13 lines
369 B
Python
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)),
|
|
]
|