mirror of
https://github.com/bcomsugi/dasaproject.git
synced 2026-01-10 07:02:38 +07:00
9 lines
374 B
Python
9 lines
374 B
Python
from django.urls import path, include
|
|
from .views import index, edit_customer, add_customer, delete_customer
|
|
app_name = "Customer"
|
|
urlpatterns = [
|
|
path('', index, name="index" ),
|
|
path('edit/<int:pk>', edit_customer, name="edit_customer" ),
|
|
path('add/', add_customer, name="add_customer" ),
|
|
path('delete/<int:pk>', delete_customer, name="delete_customer" ),
|
|
] |