{% extends 'base.html' %} {% block title %}{{ student.name }} ({{ student.student_id }}) - 考勤紀錄 - 1218 Lab{% endblock %} {% block content %}

{{ student.name }} 的個人考勤簽到明細

返回學生列表
學號 {{ student.student_id }}
姓名 {{ student.name }}
學位 / 身分
{% if student.degree_type == '博士生' %} 博士生 {% else %} 碩士生 {% endif %} {% if student.student_category == '在職生' %} 在職生 {% elif student.student_category == '交換中' %} 交換中 {% else %} 一般生 {% endif %}
總簽到次數 {% if can_view_records %}{{ point_records|length }} 次{% else %}受限{% endif %}
學生個人報告統計明細 (週會排程)
{{ rule_desc }}
{% for sch in schedules %} {% empty %} {% endfor %}
# 排定報告日期 (Monday) 報告排程狀態
{{ forloop.counter }} {{ sch.date|date:"Y-m-d" }} (星期一) 已排定週會報告
{% if student.student_category == '交換中' %} 交換生免排定週會報告 {% else %} 尚無排定週會報告日期 {% endif %}
{% if can_view_records %}
簽到歷史紀錄
共 {{ point_records|length }} 筆記錄
{% for record in point_records %} 10 %}class="extra-record-row d-none"{% endif %}> {% empty %} {% endfor %}
# 簽到日期與時間 (Date & Time) 簽到狀態
{{ forloop.counter }} {{ record.datetime|date:"Y-m-d H:i:s" }} 簽到成功
目前無此學生的考勤簽到紀錄
{% if point_records|length > 10 %}
{% endif %}
{% else %}
權限不足:簽到歷史紀錄僅供同時屬於 Active Directory AdministratorsDomain Admins 群組之管理者檢視。
{% endif %}
{% endblock %} {% block scripts %} {% if can_view_records and point_records|length > 10 %} {% endif %} {% endblock %}