{% extends "base.html" %} {% block title %}工作台{% endblock %} {% block content %}
{{ year.name if year else '尚未设置学年' }}

{{ current_user.display_name }},你好

{% if current_user.role in ['superadmin', 'admin'] %} 配置考评字典 {% else %} 开始填报 {% endif %}
{% if current_user.role in ['superadmin', 'admin'] %}
教师账号{{ stats.teachers }}当前启用
字典指标{{ stats.indicators }}当前学年
待审核{{ stats.pending }}教师已提交
考评记录{{ stats.records }}当前学年
WORKFLOW

从字典到正式得分

教师填报进入一级审核,管理员录入可直接生效。所有正式分数在考评记录中统一查看和留痕。

01 配置字典02 录入数据03 审核填报04 查看分数
{% elif current_user.role == 'reviewer' %}
待审核{{ stats.pending }}需要处理
已通过{{ stats.approved }}已计入分数
已退回{{ stats.rejected }}教师可查看原因
教师填报{{ stats.records }}当前学年
REVIEW DESK

处理待审核材料

核对教师填报内容和系统计算分数,通过后即计入教师正式总分。

进入一级审核
{% else %}
当前总分{{ '%.1f'|format(stats.score) }}仅本人可见
全部记录{{ stats.records }}当前学年
待审核{{ stats.pending }}暂不计入正式分数
已通过{{ stats.approved }}已计入正式分数
{% endif %} {% endblock %}