{% extends "base_page.html" %} {% block title %}Working Hours Analysis{% endblock %} {% block page_title %}Working Hours Analysis (In/Out Time){% endblock %} {% block content %}

Working Hours Analysis

Filter Options
Working Hours for {{ selected_employee_name }} {{ total_logs }} records found
{% if logs %} {% if total_pages > 1 %}
Total Records: {{ total_logs }}
{% if current_page > 1 %} Previous {% endif %} Page {{ current_page }} of {{ total_pages }} {% if current_page < total_pages %} Next {% endif %}
{% endif %}
{% for log in logs %} {% endfor %}
Date Employee Name First In Last Out Total INSIDE Time Total OUTSIDE Time Total Time (Span) Status
{{ log.date }} {{ log.name }} {{ log.last_name }} {{ log.first_in }} {% if log.is_invalid_day %} N/A {% elif log.is_currently_inside %} Still Inside {% else %} {{ log.last_out }} {% endif %} {{ log.inside_time }} {{ log.outside_time }} {% if log.is_invalid_day %} N/A {% elif log.total_span_seconds and log.total_span_seconds > 0 %} {{ "%02d:%02d:%02d"|format(log.total_span_seconds // 3600, (log.total_span_seconds % 3600) // 60, log.total_span_seconds % 60) }} {% else %} 00:00:00 {% endif %} {{ log.status_display }}
{% if total_pages > 1 %}
Total Records: {{ total_logs }}
{% if current_page > 1 %} Previous {% endif %} Page {{ current_page }} of {{ total_pages }} {% if current_page < total_pages %} Next {% endif %}
{% endif %} {% else %}
No Data Found

No working hours found for the selected criteria.

{% endif %}
{% endblock %}