From 7c90fc4014505ccd48c200079f71d466c44c1b0a Mon Sep 17 00:00:00 2001 From: Viajero <2737079298@qq.com> Date: Wed, 24 Sep 2025 19:47:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20templates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/all.html | 164 ++++++++++++++++++++++++++++ templates/base.html | 177 ++++++++++++++++++++++++++++++ templates/index.html | 238 +++++++++++++++++++++++++++++++++++++++++ templates/results.html | 182 +++++++++++++++++++++++++++++++ 4 files changed, 761 insertions(+) create mode 100644 templates/all.html create mode 100644 templates/base.html create mode 100644 templates/index.html create mode 100644 templates/results.html diff --git a/templates/all.html b/templates/all.html new file mode 100644 index 0000000..1624534 --- /dev/null +++ b/templates/all.html @@ -0,0 +1,164 @@ +{% extends "base.html" %} + +{% block title %}数据操作 - 紫金·稷下薪火·云枢智海师生成果共创系统{% endblock %} + +{% block content %} + + +
+

所有已录入的奖项信息

+

在此页面可以查看所有已录入的成果信息,并进行删除操作

+ +
+ + + + + + + + + + + + {% if data %} + {% for item in data %} + + + + + + + + {% endfor %} + {% else %} + + + + {% endif %} + +
比赛/论文名称项目名称学生指导老师操作
{{ item.id or '无' }}{{ item.name or '无' }}{% if item.students is string %}{{ item.students or '无' }}{% else %}{{ item.students|join(', ') if item.students else '无' }}{% endif %}{% if item.teacher is string %}{{ item.teacher or '无' }}{% else %}{{ item.teacher|join(', ') if item.teacher else '无' }}{% endif %} +
+ +
+
暂无数据
+
+ + 返回首页 +
+{% endblock %} \ No newline at end of file diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..7983e7e --- /dev/null +++ b/templates/base.html @@ -0,0 +1,177 @@ + + + + + + {% block title %}紫金·稷下薪火·云枢智海师生成果共创系统{% endblock %} + + + +
+

紫金 稷下薪火·云枢智海师生成果共创系统

+
+ + + +
+ {% block content %} + {% endblock %} +
+ + + + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..96c90ba --- /dev/null +++ b/templates/index.html @@ -0,0 +1,238 @@ +{% extends "base.html" %} + +{% block title %}录入成果 - 紫金·稷下薪火·云枢智海师生成果共创系统{% endblock %} + +{% block content %} +
+

+ 成果录入 +

+

请上传包含成果信息的图片(如获奖证书、论文封面等),系统将自动识别关键信息

+ +
+
+ + +
支持JPG、PNG、GIF等格式,文件大小不超过10MB
+
+ +
+ +
+
+ + + + +{% endblock %} \ No newline at end of file diff --git a/templates/results.html b/templates/results.html new file mode 100644 index 0000000..e895619 --- /dev/null +++ b/templates/results.html @@ -0,0 +1,182 @@ + + +{% extends "base.html" %} + +{% block title %}查询统计 - 紫金·稷下薪火·云枢智海师生成果共创系统{% endblock %} + +{% block content %} + + +
+

奖项成果查询

+

输入关键词(如姓名、奖项名等)搜索已录入的成果信息

+ +
+
+ + +
+
+ +
+ +
+
+ + +{% endblock %}