{% extends "base.html" %} {% block title %}我的分数{% endblock %} {% block content %}
MY SCORE · {{ year.name if year else '' }}

我的分数

仅显示本人分数和记录状态,不显示排名。

新增填报
当前总分{{ totals.score|score }}已通过记录
已通过{{ totals.approved }}已计入总分
待审核{{ totals.pending }}暂不计分
已退回{{ totals.rejected }}查看退回原因
已作废{{ totals.voided }}仅本人可见,可删除
DETAILS

分项明细

{% for row in rows %} {% else %}{% endfor %}
考评项目填报内容状态得分时间操作
{{ row.indicator }}{{ row.category }} {{ row.inputs }}{% if row.review_note %}审核意见:{{ row.review_note }}{% endif %} {{ row.status_label }} {{ row.final_score|score if row.final_score is not none else '—' }} {{ row.created_at.strftime('%Y-%m-%d') }}
{% if row.can_edit %}{{ '修改并重新提交' if row.status == 'rejected' else '编辑待审核填报' }}{% endif %} {% if row.can_void %}
{% endif %} {% if row.can_delete %}
{% endif %}

还没有考评记录

完成首次填报后会显示在这里。

{% for row in rows %} {% endfor %} {% endblock %} {% block scripts %}{% endblock %}