from django.urls import path, include from . import views urlpatterns = [ path('profile/', views.ProfileView.as_view(), name='profile-detail'), path('profile//update/', views.ProfileUpdateView.as_view(), name='profile-update'), path('/', include([ path('', views.AccountDetailView.as_view(), name='account-detail'), path('update/', views.AccountUpdateView.as_view(), name='account-update'), path('delete/', views.AccountDeleteView.as_view(), name='account-delete'), ])), ]