{% extends '_include/base.html.twig' %} {% block title %}Absences ยท HR Management{% endblock %} {% block breadcrumbs %} {% endblock %} {% block page_title %}Absences{% endblock %} {% block page_actions %} New Absence {% endblock %} {% block content %}

Absence Records

{{ pagination.total }} total records

{% for absence in absences %} {% else %} {% endfor %}
Employee Type Start Date End Date Status Excused Actions
{{ absence.employee }} {{ absence.type|replace({'_': ' '})|title }} {{ absence.startDate ? absence.startDate|date('Y-m-d') : '-' }} {{ absence.endDate ? absence.endDate|date('Y-m-d') : '-' }} {{ absence.status|title }} {{ absence.isExcused ? 'Yes' : 'No' }}
No absence records found
{% if pagination is defined %} {% include '_include/_pagination.html.twig' %} {% endif %}
{% endblock %}