File size: 479 Bytes
b9dea51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>{{ title }}</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
  <style>
    body { padding: 2rem; background: #f8f9fa; }
    h1 { margin-bottom: 2rem; }
    table { background: white; }
  </style>
</head>
<body>
  <h1>{{ title }}</h1>
  <a class="btn btn-primary mb-3" href="/download">Download CSV</a>
  {{ tables[0]|safe }}
</body>
</html>