2020-10-17 21:31:55 +02:00
|
|
|
from django.urls import include, path
|
2024-07-02 22:50:21 +02:00
|
|
|
from .views import PasswordChangeView, AccountSettingsView
|
2020-10-17 21:31:55 +02:00
|
|
|
|
2020-12-24 14:19:35 +01:00
|
|
|
app_name = "accounts"
|
2020-10-17 21:31:55 +02:00
|
|
|
|
|
|
|
accounts_patterns = [
|
2020-12-20 01:10:02 +01:00
|
|
|
path("change_password/", PasswordChangeView.as_view(), name="change_password"),
|
2020-12-24 14:19:35 +01:00
|
|
|
path("settings/", AccountSettingsView.as_view(), name="account_settings"),
|
2020-10-17 21:31:55 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
urlpatterns = [
|
2020-11-22 13:34:01 +01:00
|
|
|
path("", include(accounts_patterns)),
|
2020-10-17 21:31:55 +02:00
|
|
|
]
|