{% extends "base_page.html" %} {% block title %}Monthly Attendance Control{% endblock %} {% block page_title %}Monthly Attendance Control{% endblock %} {% block content %}
| Employee | {% for day in data.headers %} {% set day_date = data.current_year ~ '-' ~ '%02d'|format(current_selection.month) ~ '-' ~ '%02d'|format(day) %} {% set day_obj = day_date|string|str_to_date %} {% set is_week_start = day_obj.weekday() == 0 %}
{{ day }}
{{ day_obj.strftime('%a') }} |
{% endfor %}
|---|---|
|
{% if log.photo_path %}
{{ log.name[0].upper() }}
{% endif %}
{{ log.name }}
|
{% for day in data.headers %}
{% set status_index = loop.index0 %}
{% set status = log.days[status_index] %}
{% set day_date = data.current_year ~ '-' ~ '%02d'|format(current_selection.month) ~ '-' ~ '%02d'|format(day) %}
{% set day_obj = day_date|string|str_to_date %}
{% set is_week_start = day_obj.weekday() == 0 %}
{% if day_obj.weekday() >= 5 %} {% elif status == 'T' %} {% elif status == 'E' %} {% elif status == 'D' %} {% elif status == 'N' %} {% else %} {% endif %} | {% endfor %}
{% if current_selection.search %} No employees found matching "{{ current_selection.search }}" for {{ data.month_name }} {{ data.current_year }}. {% else %} No attendance data found for {{ data.month_name }} {{ data.current_year }}. {% endif %}