diff --git a/src/landppt/web/templates/todo_board.html b/src/landppt/web/templates/todo_board.html new file mode 100644 index 0000000..2ee1249 --- /dev/null +++ b/src/landppt/web/templates/todo_board.html @@ -0,0 +1,5597 @@ +{% extends "base.html" %} + +{% block title %}TODO 看板 - {{ todo_board.title }} - LandPPT{% endblock %} + +{% block extra_css %} + +{% endblock %} + +{% block content %} + +
+
+
+

📋 {{ todo_board.title }}

+

项目ID: {{ todo_board.task_id }}

+
+
+ + + {% set requirements_stage = todo_board.stages | selectattr('id', 'equalto', 'requirements_confirmation') | first %} + {% if requirements_stage and requirements_stage.status == 'pending' %} +
+
+
+

📝 需求确认

+
+

请确认以下信息,AI将根据您的确认生成定制化的PPT内容

+
+ + +
+
+ +
+
正在准备需求表单
+
+
+
+
+
提示
+

请稍候,系统正在为您准备项目需求确认表单...

+
+
+ + +
+ {% endif %} + + +
+
+ + 📊 项目详情 + + + {% if todo_board.overall_progress >= 100 %} + + 🔍 预览 PPT + + + ✏️ 编辑 PPT + + {% endif %} + + + 📋 返回项目列表 + +
+
+ + + + +{% endblock %} + +{% block extra_js %} + + +{% endblock %}