XH_Digital_Management/application/exec_tbl/urls.py

16 lines
833 B
Python
Raw Permalink Normal View History

2024-06-06 15:08:38 +08:00
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'),
]