XH_Digital_Management/application/mkt_mgnt/urls.py

14 lines
659 B
Python

from django.urls import path
from .views import *
urlpatterns = [
path('proj_res_list/', proj_res_list_view, name='proj_res_list'),
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'),
]