{% extends 'base.html' %} {% block title %}使用大屏 - {{ get_app_name() }}{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block content %}

使用大屏

校园版全校 OpenMentor 使用情况

{% for metric in primary_metrics %}
{{ metric.label }}
{{ metric.value }}
{{ metric.sub }}
{% endfor %}
{% for item in extra_metrics %}
{{ item.label }}
{{ item.value }}
{% endfor %}
使用趋势
学生消息 数据提交
{% for item in trend_items %} {% set total = item.messages + item.submissions %} {% set msg_h = (item.messages / trend_max * 100) if trend_max else 0 %} {% set sub_h = (item.submissions / trend_max * 100) if trend_max else 0 %}
{{ item.label }}
{% endfor %}
附件类型
{% set max_attachment = attachment_type_items | map(attribute='value') | max %} {% for item in attachment_type_items %} {% set pct = (item.value / max_attachment * 100) if max_attachment else 0 %}
{{ item.label }}
{{ item.value }}
{% endfor %}
教师使用排行
按对话与提交综合排序
{% for row in teacher_rows %} {% else %} {% endfor %}
教师 状态 使用 AI导师 数据任务 提交 附件
{{ row.name }}
{{ row.username }}
{% if row.is_active %} 启用 {% else %} 禁用 {% endif %} {{ row.usage }} {{ row.assistants }} {{ row.data_tasks }} {{ row.submissions }} {{ row.attachments }}
暂无数据
最近对话
{% for item in recent_items %}
{{ item.assistant }}
{{ item.teacher }} · {{ item.student }}
{{ item.time }}
{% else %}
暂无对话
{% endfor %}
{% endblock %}