-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentries.tmpl
More file actions
44 lines (39 loc) · 1.11 KB
/
entries.tmpl
File metadata and controls
44 lines (39 loc) · 1.11 KB
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
<html>
<head><title><TMPL_VAR NAME=INITIALS> Calendar</title></head>
<body>
<style type="text/css">
table { border-collapse: collapse; empty-cells: show; }
th { font-family:Arial, sans-serif; font-size:14px; padding:10px 5px; position: relative; border-style:solid; border-width:1px}
tr.strikeout th:before {
content: " ";
position: absolute;
top: 50%;
left: 0;
border-bottom: 1px solid #111;
width: 100%;
}
tr.strikeout th:after {
content: "\00B7";
font-size: 1px;
}
/* Extra styling */
td { width: 100px; }
th { text-align: left; }
</style>
<TMPL_VAR NAME=JUDGE> <TMPL_VAR NAME=MONTH> <TMPL_VAR NAME=DATE>, <TMPL_VAR NAME=YEAR>, derived from SLC_Calendar.pdf last modified on <TMPL_VAR NAME=MODIFIED>, with SHA512:<br>
<TMPL_VAR NAME=DIGEST>
<p>
<TMPL_LOOP NAME=ENTRY>
<table>
<tr>
<th><TMPL_VAR NAME=ENTRY_NUMBER></th>
<th><TMPL_VAR NAME=DEFENDANT></th>
<th><TMPL_VAR NAME=CASE_NUMBER></th>
<th><TMPL_VAR NAME=HEARING_TYPE></th>
<th></th>
</tr>
<br>
</table>
</TMPL_LOOP>
</body>
</html>