XH_Digital_Management/application/mkt_mgnt/urls.py

8 lines
197 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('cust_list/', cust_list_view, name='cust_list'),
path('proj_res_list/', proj_res_list_view, name='proj_res_list'),
2024-05-29 09:27:39 +08:00
]