1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

Reworked some account views

This commit is contained in:
Real-Gecko 2020-06-16 18:35:08 +06:00
parent 1a3cc36ada
commit 636b5bb1bc
8 changed files with 179 additions and 221 deletions

View file

@ -9,4 +9,7 @@ urlpatterns = [
path('profile/', views.profile, name='profile'),
path('profile/<int:user_id>/', views.account, name='account'),
path('change_password/', views.change_password, name='change_password'),
path('user_instance/create/<int:user_id>/', views.user_instance_create, name='user_instance_create'),
path('user_instance/<int:pk>/update/', views.user_instance_update, name='user_instance_update'),
path('user_instance/<int:pk>/delete/', views.user_instance_delete, name='user_instance_delete'),
]