Mark Absent | 新增請假
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
{% if message[0] == '`' %}
{% autoescape false %}{{message[1:]}}{% endautoescape %}
{% else %}
{% autoescape false %}{{message[1:]}}{% endautoescape %}
{% endif %}
{% endfor %}
{% endif %}
{% endwith %}
最新 10 筆資料 (完整資料請到 這裡)
{% for r in records %}
{{r[0]}}
{{r[1]}}
{{r[2]}}{{r[3]}}
{{r[4]}}
{{students[r[2]][r[3]][r[4]]}}
{% if r[5] == 'L' %}遲到{% endif %}
{% if r[5] == 'K' %}曠課{% endif %}
{% if r[5] == 'G' %}事假{% endif %}
{% if r[5] == 'S' %}病假{% endif %}
{% if r[5] == 'F' %}喪假{% endif %}
{% if r[5] == 'P' %}疫情假{% endif %}
{% if r[5] == 'O' %}公假{% endif %}
{{r[6]}}
{% endfor %}
{% include 'footer.html' %}