{% extends 'base.html' %} {% block title %}数据分析 - {{ task.title }} - {{ get_app_name() }}{% endblock %} {% block content %}

数据分析 - {{ task.title }}

智能分析 返回详情
数据概览
总提交数量

{{ submission_count }}

最早提交时间

{% if earliest_submission %}{{ earliest_submission.strftime('%Y-%m-%d %H:%M:%S') }}{% else %}暂无数据{% endif %}

最新提交时间

{% if latest_submission %}{{ latest_submission.strftime('%Y-%m-%d %H:%M:%S') }}{% else %}暂无数据{% endif %}

每日提交统计
{% if graph_data %}
{% for date, count in graph_data.items() %} {% endfor %}
日期 提交数量
{{ date }} {{ count }}
{% else %}

暂无足够数据进行统计

当有更多提交数据时,将显示每日提交统计信息

{% endif %}
数据导出

导出数据以进行更详细的分析或存档:

导出为CSV文件
CSV文件可以用Excel、Google Sheets或其他电子表格软件打开
{% endblock %}