{% load i18n %} {% load static %} {% if employees %}
{% for emp in employees %}
{{ emp.get_full_name }} {% trans "At work" %} {{ emp.get_forecasted_at_work.forecasted_at_work }} {% trans "Pending" %} {{ emp.get_forecasted_at_work.forecasted_pending_hours }}
{% endfor %}
{% else %}

{% trans "No records available at the moment." %}

{% endif %}