First commit of claude's rework in django + vanillajs fronted
This commit is contained in:
8
apps/users/urls.py
Normal file
8
apps/users/urls.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from django.urls import path
|
||||
from .views import AdminUserDetailView, AdminUserListView, UserProfileView
|
||||
|
||||
urlpatterns = [
|
||||
path('profile/', UserProfileView.as_view(), name='user-profile'),
|
||||
path('admin/', AdminUserListView.as_view(), name='admin-user-list'),
|
||||
path('admin/<int:pk>/', AdminUserDetailView.as_view(), name='admin-user-detail'),
|
||||
]
|
||||
Reference in New Issue
Block a user