{{ year_month }} 月次サマリー

勤務日数
{{ summary.work_days }}日
総勤務時間
{{ summary.total_seconds|duration }}
総休憩時間
{{ summary.total_break_seconds|duration }}
実勤務時間
{{ summary.total_actual_work_seconds|duration }}
平均勤務時間
{{ summary.avg_seconds|duration }}
平均実勤務時間
{{ summary.avg_actual_work_seconds|duration }}
{% if has_open_day %}

進行中のセッションがある日は集計に含まれません。

{% endif %}
{% for day in days %} {% endfor %}
日付 曜日 セッション 休憩 総勤務 実労働
{{ day.date }} {{ day.weekday }} {% if day.sessions %} {% for s in day.sessions %}
{{ s.check_in.strftime('%H:%M') }}–{%- if s.check_out %}{{ s.check_out.strftime('%H:%M') }}{% if s.check_out.date() != s.check_in.date() %}翌日{% endif %}{%- else %}進行中{%- endif %}
{% endfor %} {% else %} - {% endif %}
{% if day.breaks %} {% for b in day.breaks %}
{{ b.start.strftime('%H:%M') }}–{{ b.end.strftime('%H:%M') if b.end else '進行中' }}
{% endfor %} {% else %} - {% endif %}
{{ day.duration_seconds|duration if day.duration_seconds is not none else '-' }} {{ day.actual_work_seconds|duration if day.actual_work_seconds is not none else '-' }}