NSS / templates /table.html
Kshitijk20's picture
Clean deployment without binary files
a21e473
Raw
History Blame Contribute Delete
376 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Data Table</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
</style>
</head>
<body>
<h2>Predicted Data</h2>
{{ table | safe }}
</body>
</html>