XH_Digital_Management/application/hrm_mgnt/views.py

26 lines
684 B
Python

from django.shortcuts import render
# 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):
# return render(request, 'fac_mgnt/employee_performance_management.html')
def annual_leave_records(request):
return render(request, 'hrm_mgnt/annual_leave_record.html')