{% extends 'index.html' %} {% load i18n %} {% block content %} {% load static %} {% load attendancefilters %}
{% trans "Today's Attendances" %}
{{marked_attendances_ratio}}%
{% comment %} {{marked_attendances}}/{{expected_attendances}} {% endcomment %}
{% trans "On Time" %}
{{on_time}}
{% comment %} {{on_time_ratio}}% {% endcomment %}
{% if late_come_early_out_tracking %}
{% trans "Late Come" %}
{{late_come}}
{% endif %}
{% trans "Attendance Analytic" %}
{% include "dashboard/not_in_yet.html" %}
{% trans "Hours Chart" %}
{% trans "On Break" %}
{% if on_break %}
    {% for emp in on_break %}
  • Amy Winehouse
    {{emp.employee_id}}
  • {% endfor %}
{% else %}

{% trans "No employees on break...." %}

{% endif %}
{% trans "Overtime To Validate" %}
{% include "attendance/dashboard/overtime_table.html" %}
{% include "attendance/dashboard/to_validate_table.html" %}
{% trans "Department Overtime Chart" %}
{% endblock content %}