XH_Digital_Management/application/mkt_mgnt/urls.py

14 lines
659 B
Python
Raw Normal View History

2024-05-29 09:27:39 +08:00
from django.urls import path
from .views import *
urlpatterns = [
2024-05-31 20:17:40 +08:00
path('proj_res_list/', proj_res_list_view, name='proj_res_list'),
2024-06-06 15:08:38 +08:00
path('proj_res_list/add/', proj_res_list_add, name='proj_res_list_add'),
path('proj_res_list/modify/', proj_res_list_modify, name='proj_res_list_modify'),
path('proj_res_list/delete/', proj_res_list_delete, name='proj_res_list_delete'),
path('cust_list/', cust_list_view, name='cust_list'),
path('cust_list/add/', cust_list_add, name='cust_list_add'),
path('cust_list/modify/', cust_list_modify, name='cust_list_modify'),
path('cust_list/delete/', cust_list_delete, name='cust_list_delete'),
2024-05-29 09:27:39 +08:00
]