{% extends "admin/base.html" %} {% block page_title %}成绩 · {{e.title}}{% endblock %} {% block content %}
「{{e.title}}」考试记录({{records|length}})
{% for r in records %} {% else %} {% endfor %}
序号店员门店得分及格奖励积分用时(秒)时间
{{loop.index}} {{r.staff.name if r.staff}} {{r.staff.store.name if (r.staff and r.staff.store) else '-'}} {{r.score}} {% if r.passed %}通过{% else %}未过{% endif %} {{r.points_earned}}{{r.duration}} {{r.created_at.strftime('%Y-%m-%d %H:%M') if r.created_at}}
暂无考试记录
{% endblock %}