from django.urls import path from .views import * urlpatterns = [ path('web_maint_rec_list/', web_maint_rec_list_view, name='web_maint_rec_list'), path('web_reg_list/', web_reg_list_view, name='web_reg_list'), path('acc_op_mgmt_list/', acc_op_mgmt_list_view, name='acc_op_mgmt_list'), path('sma_reg_list/', sma_reg_list_view, name='sma_reg_list'), ]