from django.urls import path from application.exec_tbl.views import * urlpatterns = [ path('financial_data/', financial_data_list_view, name='financial_data_list'), path('monthly_financial_data/', monthly_financial_data_list_view, name='monthly_financial_data_list'), path('receivables_data/', receivables_data_list_view, name='receivables_data_list'), path('receivables_detail/', receivables_detail_list_view, name='receivables_detail_list'), path('employee_status/', employee_status_list_view, name='employee_status_list'), path('employee_performance/', employee_performance_list_view, name='employee_performance_list'), path('employee_attendance/', employee_attendance_list_view, name='employee_attendance_list'), path('project_ledger/', project_ledger_list_view, name='project_ledger_list'), ]