File size: 880 Bytes
44977bb
 
 
 
 
91bea57
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44977bb
 
91bea57
 
 
 
44977bb
91bea57
 
 
 
44977bb
91bea57
 
44977bb
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<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>