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

Employee Bonuses

Add Bonus
Clear
{% include 'hr/hr_nav.html' %}
{% if bonuses %}
{% for bonus in bonuses %} {% endfor %}
Employee Type Reason Amount Date Earned Status Actions
{{ bonus.employee.full_name }}
{{ bonus.employee.employee_id }}
{{ bonus.get_bonus_type_display }} {{ bonus.reason }} KES {{ bonus.amount|floatformat:2 }} {{ bonus.date_earned|date:"M d, Y" }} {% if bonus.is_recurring %}
Recurring {% endif %}
{% if bonus.is_active %} Active {% else %} Inactive {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No bonuses found

Add bonuses for employees as needed.

Add Bonus
{% endif %}
{% endblock %}