16 lines
815 B
Python
16 lines
815 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('members/', views.members, name='members'),
|
|
path('members/details/<int:id>', views.details, name="details"),
|
|
path('members/create/', views.create, name="create"),
|
|
path('members/edit/<int:id>', views.edit, name="edit"),
|
|
path('members/delete/<int:id>', views.delete, name="delete"),
|
|
path('members/account/details/<int:id>', views.details_account, name="details_account"),
|
|
path('members/account/edit/<int:id>', views.edit_account, name="edit_account"),
|
|
path('members/account/create/<int:id>', views.create_account, name="create_account"),
|
|
path('members/account/edit/<int:id>', views.edit_account, name="edit_account"),
|
|
path('members/account/delete/<int:id>', views.delete_account, name="delete_account"),
|
|
]
|