{% extends "base.html" %} {% block title %}学生主页 - FlashExam{% endblock %} {% block head %} {% endblock %} {% block content %}
可用考试
已完成考试
平均分
请等待老师发布考试
| 考试名称 | 成绩 | 状态 | 完成时间 |
|---|---|---|---|
| {{ result.get('exam_title', '未知考试') }} | {% if result.get('is_completed') %} {% set score = result.get('score', 0) %} {% set total = result.get('total_score', 100) %} {{ "%.1f"|format(score) }}/{{ "%.1f"|format(total) }} {% else %} 未完成 {% endif %} | {% if result.get('is_completed') %} 已完成 {% else %} 进行中 {% endif %} | {{ result.get('end_time', '-')[:16].replace('T', ' ') if result.get('end_time') else '-' }} |