XH_Digital_Management/application/hrm_mgnt/views.py

26 lines
684 B
Python
Raw Normal View History

2024-05-15 09:23:16 +08:00
from django.shortcuts import render
2024-05-15 09:23:16 +08:00
# Create your views here.
def positions_table(request):
return render(request, 'hrm_mgnt/positions_table.html')
def ranks_table(request):
return render(request, 'hrm_mgnt/ranks_table.html')
def employee_information(request):
return render(request, 'hrm_mgnt/employee_information.html')
def employee_attendance_records(request):
return render(request, 'hrm_mgnt/employee_attendance_records.html')
# def employee_performance_management(request):
2024-05-29 09:27:39 +08:00
# return render(request, 'opa_mgnt/employee_performance_management.html')
def annual_leave_records(request):
return render(request, 'hrm_mgnt/annual_leave_record.html')