Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<style> | |
table { | |
border-collapse: collapse; | |
width: 100%; | |
border: 1px solid black; /* Add this line */ | |
} | |
th, td { | |
border: 1px solid black; | |
padding: 8px; | |
text-align: left; | |
} | |
th { | |
background-color: #f2f2f2; | |
} | |
tr:nth-child(even) { | |
background-color: #f2f2f2; | |
} | |
.table-container { | |
max-height: 400px; | |
overflow-y: auto; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Hasil Prediksi</h1> | |
<a href="/">Kembali </a> | |
<div class="container my-5"> | |
<h2>DataFrame Display</h2> | |
<div class="table-container"> | |
{{ forecasted_table|safe }} | |
</div> | |
</div> | |
<img src="{{ result_img }}" alt="" srcset=""> | |
</body> | |
</html> |