XH_Digital_Management/application/opa_mgnt/urls.py

22 lines
1.4 KiB
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('sma_reg_list/', sma_reg_list_view, name='sma_reg_list'),
2024-06-06 15:08:38 +08:00
path('sma_reg_list/add/', sma_reg_list_add, name='sma_reg_list_add'),
path('sma_reg_list/modify/', sma_reg_list_modify, name='sma_reg_list_modify'),
path('sma_reg_list/delete/', sma_reg_list_delete, name='sma_reg_list_delete'),
path('acc_op_mgmt_list/', acc_op_mgmt_list_view, name='acc_op_mgmt_list'),
path('acc_op_mgmt_list/add/', acc_op_mgmt_list_add, name='acc_op_mgmt_list_add'),
path('acc_op_mgmt_list/modify/', acc_op_mgmt_list_modify, name='acc_op_mgmt_list_modify'),
path('acc_op_mgmt_list/delete/', acc_op_mgmt_list_delete, name='acc_op_mgmt_list_delete'),
path('web_reg_list/', web_reg_list_view, name='web_reg_list'),
path('web_reg_list/add/', web_reg_list_add, name='web_reg_list_add'),
path('web_reg_list/modify/', web_reg_list_modify, name='web_reg_list_modify'),
path('web_reg_list/delete/', web_reg_list_delete, name='web_reg_list_delete'),
path('web_maint_rec_list/', web_maint_rec_list_view, name='web_maint_rec_list'),
path('web_maint_rec_list/add/', web_maint_rec_list_add, name='web_maint_rec_list_add'),
path('web_maint_rec_list/modify/', web_maint_rec_list_modify, name='web_maint_rec_list_modify'),
path('web_maint_rec_list/delete/', web_maint_rec_list_delete, name='web_maint_rec_list_delete'),
2024-05-29 09:27:39 +08:00
]