{% extends "base.html" %} {% block title %}一级审核{% endblock %} {% block content %}
REVIEW DESK

一级审核

教师填报经过一次审核后计入正式分数。

{% for row in rows %}
{{ row.category }}

{{ row.indicator }}

{{ row.teacher }} · {{ row.created_at.strftime('%m-%d %H:%M') }}
{{ row.auto_score|score }} 分{{ row.status_label }}展开完整内容
填报教师{{ row.teacher }} 预计得分{{ row.auto_score|score }} 分 提交时间{{ row.created_at.strftime('%m-%d %H:%M') }}
填报数据
{% for field in row.input_fields %}{{ field.label }}{{ field.value }}{% else %}

{% endfor %}
{% if row.tracking %}
{{ row.tracking_label }}

{{ row.tracking }}

{% endif %} {% if row.note %}
补充说明

{{ row.note }}

{% endif %} {% if row.attachments %}
证明材料
{% for attachment in row.attachments %}{% set image_url = url_for('main.view_attachment', attachment_id=attachment.id) %}{% endfor %}
{% endif %} {% if row.review_note %}
审核意见

{{ row.review_note }}

{% endif %} {% if row.status == 'pending' %}
{% elif row.status == 'approved' %}
{% endif %}
{% else %}

当前没有记录

该状态下暂无教师填报。

{% endfor %}
{% endblock %} {% block scripts %}{% endblock %}