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

Employee Deductions

Add Deduction
Clear
{% include 'hr/hr_nav.html' %}
{% if deductions %}
{% for deduction in deductions %} {% endfor %}
Employee Type Reason Amount Period Status Actions
{{ deduction.employee.full_name }}
{{ deduction.employee.employee_id }}
{{ deduction.get_deduction_type_display }} {{ deduction.reason }} KES {{ deduction.amount|floatformat:2 }} {{ deduction.start_date|date:"M d, Y" }} {% if deduction.end_date %} - {{ deduction.end_date|date:"M d, Y" }} {% else %} - Ongoing {% endif %} {% if deduction.is_recurring %}
Recurring {% endif %}
{% if deduction.is_active %} Active {% else %} Inactive {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No deductions found

Add deductions for employees as needed.

Add Deduction
{% endif %}
{% endblock %}