17 lines
935 B
Python
Raw Permalink Normal View History

2025-05-09 14:06:21 +02:00
from django.urls import path
2025-07-19 16:07:33 +02:00
from .views import person_views
from .views import account_views
2025-05-09 14:06:21 +02:00
urlpatterns = [
2025-07-19 16:07:33 +02:00
path('members/', person_views.members, name='members'),
path('members/details/<int:id>', person_views.details, name="details"),
path('members/create/', person_views.create, name="create"),
path('members/edit/<int:id>', person_views.edit, name="edit"),
path('members/delete/<int:id>', person_views.delete, name="delete"),
path('members/account/details/<int:id>', account_views.details_account, name="details_account"),
path('members/account/edit/<int:id>', account_views.edit_account, name="edit_account"),
path('members/account/create/<int:id>', account_views.create_account, name="create_account"),
path('members/account/edit/<int:id>', account_views.edit_account, name="edit_account"),
path('members/account/delete/<int:id>', account_views.delete_account, name="delete_account"),
2025-05-09 14:06:21 +02:00
]