{% extends "base.html" %}{% block content %}
| Employee | Date/Month | Type/Requested | Amount/Approved | Status | Reason | Action | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ x.employee }} | {% if kind == 'Overtime' %}{{ x.work_date }} | {{ x.requested_minutes }} min | {{ x.approved_minutes }} min × {{ x.rate_multiplier }} | {% elif kind == 'Bonus' %}{{ x.payroll_month }} | {{ x.bonus_type }} | {{ x.amount }} | {% else %}{{ x.payroll_month }} | {{ x.deduction_type }} | {{ x.amount }} | {% endif %}{{ x.status }} | {{ x.reason|default:"—" }} | {% if x.status == 'PENDING' %}{% if kind == 'Overtime' %}Edit{% elif kind == 'Bonus' %}Edit{% else %}Edit{% endif %}{% else %}Decision finalized{% endif %} |
| No records. | ||||||||||||