{% extends 'base.html' %} {% load static %} {% block title %}Payslips - HR - Optinet Global Links{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Manage employee payslips
Payslip # | Employee | Pay Period | Gross Salary | Deductions | Net Salary | Status | Actions |
---|---|---|---|---|---|---|---|
{{ payslip.payslip_number }} |
{{ payslip.employee.full_name }}
{{ payslip.employee.employee_id }} |
{{ payslip.pay_period_start|date:"M d" }} - {{ payslip.pay_period_end|date:"M d, Y" }} | KES {{ payslip.gross_salary|floatformat:2 }} | KES {{ payslip.total_deductions|add:payslip.paye_tax|add:payslip.nhif_deduction|add:payslip.nssf_deduction|floatformat:2 }} | KES {{ payslip.net_salary|floatformat:2 }} | {% if payslip.is_paid %} Paid {% elif payslip.is_generated %} Generated {% else %} Draft {% endif %} |