{% extends "notifications/base_email.html" %} {% block title %}Overtime Payment Processed{% endblock %} {% block header %}Overtime Payment Processed{% endblock %} {% block content %}

Dear {{ employee.user.first_name }},

Your overtime payment has been processed.

Payment Details

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 }}
Payment Date {{ overtime_request.payment_date }}
Status {{ overtime_request.get_payment_status_display }}
{% if overtime_request.finance_comment %}

Finance Comment

{{ overtime_request.finance_comment }}

{% endif %}
View Request

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

{% endblock %}