{% extends "layout.html" %} {% block content %}
Attendance Tracker
Export CSV
Worked
Off
Sick
PTO
Holiday
Other
Weekend
No data (no submissions in range)
Period Overview
{% for row in visual %}
{{ row.employee.name }}
{% for c in row.cells %}
{% endfor %}
Worked days: {{ row.totals.worked_days }} ({{ row.hours.worked|round(2) }} hrs)
Off days: {{ row.totals.off_days }} ({{ row.hours.off|round(2) }} hrs)
Sick days: {{ row.totals.sick_days }} ({{ row.hours.sick|round(2) }} hrs)
PTO days: {{ row.totals.pto_days }} ({{ row.hours.pto|round(2) }} hrs)
Holiday days: {{ row.totals.holiday_days }} ({{ row.hours.holiday|round(2) }} hrs)
Other days: {{ row.totals.other_days }} ({{ row.hours.other|round(2) }} hrs)

{% endfor %}
{% endblock %}