from django.urls import path from application.rsc_mgnt.views import * urlpatterns = [ path('cg_cat_list/', cg_cat_list_view, name='cg_cat_list'), path('cg_cat_list/add/', cg_cat_list_add, name='cg_cat_list_add'), path('cg_cat_list/modify/', cg_cat_list_modify, name='cg_cat_list_modify'), path('cg_cat_list/delete/', cg_cat_list_delete, name='cg_cat_list_delete'), path('cg_inv_list/', cg_inv_list_view, name='cg_inv_list'), path('cg_inv_list/add/', cg_inv_list_add, name='cg_inv_list_add'), path('cg_inv_list/modify/', cg_inv_list_modify, name='cg_inv_list_modify'), path('cg_inv_list/delete/', cg_inv_list_delete, name='cg_inv_list_delete'), path('cmp_phone_reg_list/', cmp_phone_reg_list_view, name='cmp_phone_reg_list'), path('cmp_phone_reg_list/add/', cmp_phone_reg_list_add, name='cmp_phone_reg_list_add'), path('cmp_phone_reg_list/modify/', cmp_phone_reg_list_modify, name='cmp_phone_reg_list_modify'), path('cmp_phone_reg_list/delete/', cmp_phone_reg_list_delete, name='cmp_phone_reg_list_delete'), path('bv_usage_list/', bv_usage_list_view, name='bv_usage_list'), path('bv_usage_list/add/', bv_usage_list_add, name='bv_usage_list_add'), path('bv_usage_list/modify/', bv_usage_list_modify, name='bv_usage_list_modify'), path('bv_usage_list/delete/', bv_usage_list_delete, name='bv_usage_list_delete'), path('mem_acc_list/', mem_acc_list_view, name='mem_acc_list'), path('mem_acc_list/add/', mem_acc_list_add, name='mem_acc_list_add'), path('mem_acc_list/modify/', mem_acc_list_modify, name='mem_acc_list_modify'), path('mem_acc_list/delete/', mem_acc_list_delete, name='mem_acc_list_delete'), path('svc_reg_list/', svc_reg_list_view, name='svc_reg_list'), path('svc_reg_list/add/', svc_reg_list_add, name='svc_reg_list_add'), path('svc_reg_list/modify/', svc_reg_list_modify, name='svc_reg_list_modify'), path('svc_reg_list/delete/', svc_reg_list_delete, name='svc_reg_list_delete'), ]