XH_Digital_Management/application/hrm_mgnt/urls.py

10 lines
577 B
Python
Raw Normal View History

from django.urls import path
from .views import ranks_table, employee_information, employee_attendance_records, annual_leave_records, positions_table
urlpatterns = [
path('positions_table/', positions_table, name='positions_table'),
path('ranks_table/', ranks_table, name='ranks_table'),
path('employee_information/', employee_information, name='employee_information'),
path('employee_attendance_records/', employee_attendance_records, name='employee_attendance_records'),
path('annual_leave_records/', annual_leave_records, name='annual_leave_records'),
]