{% extends "notifications/base_email.html" %} {% block title %}Overtime Request Approved by Registrar{% endblock %} {% block header %}Overtime Request Approved by Registrar{% endblock %} {% block content %}

Dear HR Manager,

An overtime request has been approved by the Registrar and is now pending payment processing.

Overtime Request Details

Employee {{ overtime_request.employee.user.get_full_name }}
Department {{ overtime_request.employee.department|default:"None" }}
Date {{ overtime_request.date }}
Start Time {{ overtime_request.start_time }}
End Time {{ overtime_request.end_time }}
Duration {{ overtime_request.hours|floatformat:2 }} hour(s)
Rate {{ overtime_request.rate }}x
Amount K{{ overtime_request.amount }}
Status {{ overtime_request.get_status_display }}
{% if overtime_request.registrar_comment %}

Registrar Comment

{{ overtime_request.registrar_comment }}

{% endif %}

The Finance department has been notified to process the payment.

View Request

Thank you for using the ICTAZ Workforce Time and Leave Management System.

{% endblock %}