{% load i18n static %} {% if overtime_attendances %}
{% trans "Employee" %}
{% trans "Check-In" %}
{% trans "In Date" %}
{% trans "Check-Out" %}
{% trans "Out Date" %}
{% trans "Overtime" %}
{% trans "Actions" %}
{% for attendance in overtime_attendances %}
{{attendance.employee_id}}
{{attendance.attendance_clock_in}}
{{attendance.attendance_clock_in_date}}
{{attendance.attendance_clock_out}}
{{attendance.attendance_clock_out_date}}
{{attendance.attendance_overtime}}
{% endfor %}
{% else %}

{% trans "No Overtime to Validate...." %}

{% endif %}