-
Notifications
You must be signed in to change notification settings - Fork 0
/
year_template.html
107 lines (104 loc) · 1.62 KB
/
year_template.html
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<html>
<head>
<style>
body {
font-family:Arial;
border: 1px solid black;
}
title, h2, caption {
color:Orange;
}
table {
border: solid black 1px;
}
td {
border-left: solid black 1px;
border-right: solid black 1px;
}
a {
text-decoration: none;
}
a:visited, a:hover {
color: Blue;
}
.headerRow {
color:Black;
font-weight: bold;
}
.oddHeader {
background-color:Aqua;
border-top: 1px solid black;
border-bottom: 1px solid black;
width: 8%;
}
.evenHeader{
background-color:Aqua;
border-top: 1px solid black;
border-bottom: 1px solid black;
width: 8%;
}
.oddRow{
background-color:LightBlue;
}
.evenRow{
background-color:LightBlue;
}
.ticket {
background-color:#ffffa6;
display:block;
text-overflow:ellipsis;
padding-left: 4px;
margin: 2px;
}
.ticketContainer {
background-color:Orange;
}
</style>
<title>
$title
</title>
<body>
<table width="96%" align=center cellpadding=0 cellspacing=0 class="fixed">
<caption>${title}</caption>
<tr class="headerRow">
<th class="oddHeader">
$m1
</th>
<th class="evenHeader">
$m2
</th>
<th class="oddHeader">
$m3
</th>
<th class="evenHeader">
$m4
</th>
<th class="oddHeader">
$m5
</th>
<th class="evenHeader">
$m6
</th>
<th class="oddHeader">
$m7
</th>
<th class="evenHeader">
$m8
</th>
<th class="oddHeader">
$m9
</th>
<th class="evenHeader">
$m10
</th>
<th class="oddHeader">
$m11
</th>
<th class="evenHeader">
$m12
</th>
</tr>
${rows}
</table>
</body>
</html>