info / templates /table.html
krhogan2's picture
Upload table.html
b9dea51 verified
<!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>