{% extends 'base.html' %} {% load i18n %} {% block title %}週會排程 - 1218 Lab{% endblock %} {% block content %}

{% trans "週會排程" %}

{% trans "資料庫狀態: 已同步儲存" %} {{ m1_year }}年{{ m1_month }}月 & {{ m2_year }}年{{ m2_month }}月 {% if user.is_authenticated %}
{% csrf_token %}
{% endif %}
{% trans "週會報告排程規則" %}
{% trans "碩士生 (一般 & 在職)" %}
{% trans "排程頻率: 每月 1 次" %}
{% trans "博士一般生" %}
{% trans "排程頻率: 每月 1 次" %}
{% trans "博士在職生" %}
{% trans "排程頻率: 每 2 個月 1 次" %}
{% trans "交換生 (交換中)" %}
{% trans "排程狀態: 免報告" %}
{% trans "經調整後但仍未能報告者,須準備一小時之進度簡報,當週向指導教授當面報告,次週週會補報。若連續兩次應報告而未報告,將視同解除指導關係。" %}
{% if user.is_authenticated %}
{% trans "拖曳排程微調提示:" %}{% trans "您已登入系統,可將學生列直接拖曳 (Drag & Drop) 至其他週一日期卡片中調整報告時間。系統將會在寫入資料庫前自動驗證報告頻率規則,並詳細記錄您的變更日誌。" %}
{% else %}
{% trans "檢視模式:" %}{% trans "登入系統後,可拖曳學生調整報告日期。" %}
{% endif %}

{{ m1_year }} 年 {{ m1_month }} 月週會排程 (當月)

{% for item in schedule_m1 %}
{{ item.formatted }} (星期一)
{{ item.students|length }} 位報告者
{% if item.students %}
{% for student in item.students %} {% if user.is_authenticated %} {% else %} {% endif %} {% endfor %}
學號 姓名 學位類別 身分類別
{% if user.is_authenticated %}{% endif %} {{ student.student_id }} {{ student.name }} {% if student.degree_type == '博士生' %} 博士生 {% else %} 碩士生 {% endif %} {% if student.student_category == '在職生' %} 在職生 {% elif student.student_category == '交換中' %} 交換中 {% else %} 一般生 {% endif %}
{% else %}

當日無排定報告者 (可拖曳學生至此)

{% endif %}
{% endfor %}

{{ m2_year }} 年 {{ m2_month }} 月週會排程 (下月)

{% for item in schedule_m2 %}
{{ item.formatted }} (星期一)
{{ item.students|length }} 位報告者
{% if item.students %}
{% for student in item.students %} {% if user.is_authenticated %} {% else %} {% endif %} {% endfor %}
學號 姓名 學位類別 身分類別
{% if user.is_authenticated %}{% endif %} {{ student.student_id }} {{ student.name }} {% if student.degree_type == '博士生' %} 博士生 {% else %} 碩士生 {% endif %} {% if student.student_category == '在職生' %} 在職生 {% elif student.student_category == '交換中' %} 交換中 {% else %} 一般生 {% endif %}
{% else %}

當日無排定報告者 (可拖曳學生至此)

{% endif %}
{% endfor %}
學生個人報告統計明細 (兩月排程核對)
{% for row in summary_data %} {% empty %} {% endfor %}
學號 姓名 身份 / 規則 排定報告日期 (Mondays) 應報告次數
{{ row.student.student_id }} {{ row.student.name }} {{ row.rule_desc }} {% if row.assigned_dates %} {% for d in row.assigned_dates %} {{ d }} {% endfor %} {% else %} 免報告 {% endif %} {% if row.total_count > 0 %} {{ row.total_count }} 次 {% else %} 0 次 {% endif %}
無在學學生資料
{% endblock %} {% block scripts %} {% if user.is_authenticated %} {% endif %} {% endblock %}