{% extends 'base.html' %} {% block title %}學生列表{% endblock %} {% block content %}
| 學號 | 姓名 | 在學狀態 | 學位類別 | 身分類別 | 班級/年級 | 詳細資料 |
|---|---|---|---|---|---|---|
{{ item.student.student_id }} |
{{ item.student.name }} | {% if item.student.is_active %} 在學 {% else %} 非在學 {% endif %} | {% if item.student.degree_type == '博士生' %} 博士生 {% else %} 碩士生 {% endif %} | {% if item.student.student_category == '在職生' %} 在職生 {% elif item.student.student_category == '交換中' %} 交換中 {% else %} 一般生 {% endif %} | {{ item.student.grade|default:"未填" }} | 查看詳情 |
| 沒有符合條件的學生資料 | ||||||