from django.shortcuts import render def expense_types(request): return render(request, 'fac_mgnt/expense_types.html') def expense_details(request): return render(request, 'fac_mgnt/expense_details.html') def group_annual_budget(request): return render(request, 'fac_mgnt/group_annual_budget.html') def labor_cost_details(request): return render(request, 'fac_mgnt/labor_cost_details.html') def reimbursement_details(request): return render(request, 'fac_mgnt/reimbursement_details.html') def bonus_categories(request): return render(request, 'fac_mgnt/bonus_categories.html') def bonus_distribution(request): return render(request, 'fac_mgnt/bonus_distribution.html') def tax_records(request): return render(request, 'fac_mgnt/tax_records.html') def electronic_invoice_ledger(request): return render(request, 'fac_mgnt/electronic_invoice_ledger.html') def invoice_records(request): return render(request, 'fac_mgnt/invoice_records.html') def repayment_records(request): return render(request, 'fac_mgnt/repayment_records.html') def employee_commission_details(request): return render(request, 'fac_mgnt/employee_commission_details.html') def employee_performance(request): return render(request, 'fac_mgnt/employee_performance.html')