-
Notifications
You must be signed in to change notification settings - Fork 0
/
quotes.tpl
45 lines (45 loc) · 860 Bytes
/
quotes.tpl
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
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<p></p>
<b>Last update: {{ts}}</b>
<p></p>
<table>
<tr>
<th>Classe</th>
<th>Ativo</th>
<th>Ult</th>
<th>OCp</th>
<th>OVd</th>
<th>Fech D-0</th>
<th>Fech D-1</th>
<th>Min</th>
<th>Max</th>
<th>Abe</th>
</tr>
% for row in quotes:
<tr>
% for cell in row:
<td>{{cell}}</td>
% end
</tr>
% end
</table>
</body>
</html>