{% extends 'base.html' %} {% load static %} {% block title %}Payslips - HR - Optinet Global Links{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Payslips

Manage employee payslips

{% include 'hr/hr_nav.html' %}
Clear
{% if payslips %}
{% for payslip in payslips %} {% endfor %}
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 %}
{% if is_paginated %} {% endif %} {% else %}
No payslips found

Generate payslips for your employees to get started.

Generate Payslips
{% endif %}
{% endblock content %}