{% extends 'layout/base.html' %} {% block title %}学生主页 - CHM考勤管理系统{% endblock %} {% block content %}
学号:{{ student.student_number }} | 学院:{{ student.college }} | 导师:{{ student.supervisor }}
考勤记录
总工作时长(小时)
旷工天数
待审批请假
周次 | 实际工作时长 | 班内工作时长 | 旷工天数 | 加班时长 |
---|---|---|---|---|
{{ record.week_start_date.strftime('%m-%d') }} 至 {{ record.week_end_date.strftime('%m-%d') }} | {{ record.actual_work_hours }}h | {{ record.class_work_hours }}h | {% if record.absent_days > 0 %} {{ record.absent_days }}天 {% else %} 0天 {% endif %} | {{ record.overtime_hours }}h |
暂无考勤记录