{% extends 'layout/base.html' %} {% block title %}我的考勤 - SmartDSP考勤管理系统{% endblock %} {% block content %}
周次 | 实际工作时长 | 班内工作时长 | 迟到次数 | 旷工天数 | 加班时长 | 记录时间 | 操作 |
---|---|---|---|---|---|---|---|
{{ record.week_start_date.strftime('%Y-%m-%d') }}
至 {{ record.week_end_date.strftime('%Y-%m-%d') }}
|
{{ "%.1f"|format(record.actual_work_hours) }}h | {{ "%.1f"|format(record.class_work_hours) }}h | {% if record.late_count > 0 %} {{ record.late_count }}次 {% else %} 0次 {% endif %} | {% if record.absent_days > 0 %} {{ record.absent_days }}天 {% else %} 0天 {% endif %} | {% if record.overtime_hours > 0 %} {{ "%.1f"|format(record.overtime_hours) }}h {% else %} 0h {% endif %} | {{ record.created_at.strftime('%m-%d %H:%M') }} | 查看详情 |