{% extends 'base.html' %} {% block content %}

班级:{{ student.class_name }}

{% if grades %} {% for g in grades %} {% endfor %}
序号 课程名称 成绩 操作
{{ loop.index }} {{ g.course }} {{ g.score }} 编辑 删除
平均分 {{ '%.1f' % avg }}
{% else %}

暂无成绩记录。

{% endif %}
+ 添加成绩 返回学生列表
{% endblock %}