{% extends 'base.html' %} {% block title %}{{ task.title }} - {{ get_app_name() }}{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block content %}
任务信息

创建时间:{{ task.created_at.strftime('%Y-%m-%d %H:%M:%S') }}

提交数量:{{ submission|length }}

提交URL:
{% if task.description %}
任务描述:

{{ task.description }}

{% endif %}
已上传文件({{ task.attachments|length }}个): {% if task.attachments %} {% for attachment in task.attachments %} {% set attachment_ext = attachment.file_name.rsplit('.', 1)[1].lower() if '.' in attachment.file_name else '' %} {% set is_html_attachment = attachment_ext in ['html', 'htm'] %} {% endfor %} {% endif %}
{% if remote_prompt_matrix and remote_prompt_matrix.groups %}
数据使用矩阵
{{ remote_prompt_matrix.status }}
按使用场景复制提示词

查看用于确认用途,复制用于直接交给 AI,演示用于看操作视频。

{% for item in remote_prompt_matrix['items'] %} {% endfor %}
{% for group in remote_prompt_matrix.groups %}
{{ group.name }}
{% for item in group['items'] %}
{{ item.title }}
{% endfor %}
{% endfor %}
{% if false %}
数据使用矩阵
按使用场景复制提示词

查看用于确认用途,复制用于直接交给 AI,演示用于看操作视频。

数据采集
基础提交页面
附件采集功能
AI 导师悬浮球功能
数据分析
基础数据大屏
本地附件查看功能
数据接口(API)说明: 访问下方 URL,即 GET 方式即可查看已收集的数据;制作实时统计页面时可向大模型提供该 URL 及数据样例。
点击这里 {{ request.host_url }}api/{{ task.task_id }} 可以看到全部已经回收的数据。
{% endif %} {% endif %}
提交数据列表
查看实时数据
{% if submission %}
{% for sub in submission %} {% endfor %}
ID 提交时间 数据内容 操作
{{ sub.id }} {{ sub.submitted_at.strftime('%Y-%m-%d %H:%M:%S') }}
{% if sub.attachments %} {% endif %}

共 {{ submission|length }} 条记录

{% else %}

暂无提交数据

当用户通过表单提交数据后,将在这里显示

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}