from django.urls import path

from .views import (
	UserPasswordChangeDoneView,
	UserPasswordChangeView,
	UserProfileDetailView,
	UserProfileUpdateView,
)

app_name = 'users'

urlpatterns = [
	path('profile/', UserProfileDetailView.as_view(), name='profile_detail'),
	path('profile/edit/', UserProfileUpdateView.as_view(), name='profile_update'),
	path('password/change/', UserPasswordChangeView.as_view(), name='password_change'),
	path(
		'password/change/done/',
		UserPasswordChangeDoneView.as_view(),
		name='password_change_done',
	),
]
