| 123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>股票数据分析</title>
- <link href="https://cdn.bootcdn.net/ajax/libs/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
- </head>
- <body>
- <div class="container mt-5">
- <h1>上传CSV文件</h1>
- <form action="/" method="post" enctype="multipart/form-data">
- <input type="file" name="file">
- <input type="submit" value="上传">
- </form>
- {% if tables %}
- <h2>分析结果</h2>
- {% for table in tables %}
- {{ table|safe }}
- {% endfor %}
- {% endif %}
- </div>
- </body>
- </html>
|