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