FloriCore/member/urls.py

16 lines
815 B
Python
Raw Normal View History

2025-05-09 14:06:21 +02:00
from django.urls import path
from . import views
urlpatterns = [
path('members/', views.members, name='members'),
2025-05-11 11:51:23 +02:00
path('members/details/<int:id>', views.details, name="details"),
path('members/create/', views.create, name="create"),
2025-06-14 21:37:45 +02:00
path('members/edit/<int:id>', views.edit, name="edit"),
2025-06-14 22:38:41 +02:00
path('members/delete/<int:id>', views.delete, name="delete"),
2025-07-05 11:49:07 +02:00
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"),
2025-05-09 14:06:21 +02:00
]