From a7721a17975c45f6727e7e6dab77432bf09b3ab8 Mon Sep 17 00:00:00 2001 From: dengjinlai <936887607@qq.com> Date: Thu, 25 Jul 2024 16:59:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20input?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- input/report_template.html | 93 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 input/report_template.html diff --git a/input/report_template.html b/input/report_template.html new file mode 100644 index 0000000..43a8e7b --- /dev/null +++ b/input/report_template.html @@ -0,0 +1,93 @@ +{% extends "base_template.html" %} + +{% block content %} +
+

章节划分

+ {% for section in sections %} +
+

{{ section.title }}

+

{{ section.content }}

+
+ {% endfor %} +
+ +
+

静态描述内容

+ {% for component in static_descriptions %} +
+

{{ component.name }}

+

{{ component.description }}

+
+ {% endfor %} +
+ +
+

动态加载内容

+ {% for content in dynamic_contents %} +
+

{{ content }}

+
+ {% endfor %} +
+ +
+

报告实例化后的命名规则

+

{{ naming_rules }}

+
+ +
+

版本管理

+

当前版本:{{ version_management.current_version }}

+

版本描述:{{ version_management.description }}

+

版本状态:{{ version_management.status }}

+
+ +
+

报告模板的分类属性

+

{{ classification_attributes }}

+
+ +
+

表格数据

+ + + + + + + {% for row in table_data %} + + + + + + {% endfor %} +
列1列2列3
{{ row.col1 }}{{ row.col2 }}{{ row.col3 }}
+
+ +
+

高亮内容

+

{{ highlight_content }}

+
+ +
+

图片展示

+ {% for image in images %} +
+ {{ image.alt }} +

{{ image.caption }}

+
+ {% endfor %} +
+ +
+

联系信息

+ {% if contact %} +

联系人:{{ contact.name }}

+

电话:{{ contact.phone }}

+

邮箱:{{ contact.email }}

+ {% else %} +

暂无联系信息。

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