{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "考勤報告" %} - 1218 Lab{% endblock %} {% block content %}

{% trans "考勤報告" %}

{{ last_year }} - {{ current_year }} {% blocktrans with count=attendance_data|length %}統計學生數: {{ count }} 人{% endblocktrans %}
{% trans "報表統計提示:" %}{% blocktrans with ly=last_year cy=current_year %}統計各學生於去年度 ({{ ly }}) 與本年度 ({{ cy }}) 之累積考勤簽到次數總和。{% endblocktrans %}
{% blocktrans with ly=last_year cy=current_year %}年度出席統計報表 ({{ ly }} vs {{ cy }}){% endblocktrans %}
{% if attendance_data %}
{% for entry in attendance_data %} {% endfor %}
# {% trans "姓名" %} {% trans "身分 / 學位" %} {{ last_year }} {% trans "出席次數" %} {{ current_year }} {% trans "出席次數" %}
{{ forloop.counter }} {% get_current_language as CURRENT_LANG %} {% if CURRENT_LANG == 'en' and entry.student.foreign_alias %} {{ entry.student.foreign_alias }} {% else %} {{ entry.student.name }} {% endif %} {% if entry.student.degree_type == '博士生' %} {% trans "博士生" %} {% elif entry.student.degree_type == '學士生' %} {% trans "學士生" %} {% else %} {% trans "碩士生" %} {% endif %} {% if entry.student.student_category == '在職生' %} {% trans "在職生" %} {% elif entry.student.student_category == '交換中' %} {% trans "交換中" %} {% else %} {% trans "一般生" %} {% endif %} {{ entry.last_year_count }} {{ entry.current_year_count }}
{% else %}
{% trans "尚無符合條件之考勤統計資料" %}
{% endif %}
{% endblock %}