-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle_activity_pdf.html
140 lines (126 loc) · 3.17 KB
/
single_activity_pdf.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!doctype html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<style>
body {
font-family: 'Lato', sans-serif;
}
h1, h2, h3 {
text-align: center;
font-family: 'Kelson Sans', serif;
font-weight: 600
}
table {
width: 100%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
line-height: 24px;
}
tr td:nth-child(5), tr th:nth-child(5) {
width: 35%;
}
thead {
display: table-header-group;
}
tfoot {
display: table-footer-group;
}
.break-before {
page-break-before: always;
}
h1, h3 {
text-align: center
}
td {
padding: 0 4px
}
.legal {
font-size: .8em;
line-height: 14px;
padding: 0 2mm;
}
</style>
</head>
<body>
<h1>{{ spec.title }}</h1>
<h2>{{ spec.subtitle }}</h2>
<h3>Welcome Week Summer 2023</h3>
<table>
<thead>
<tr>
<th>#</th>
<th>Last name</th>
<th>First name</th>
<th>Phone number</th>
<th>Signature</th>
</tr>
</thead>
<tbody>
{% for row in rows %}
<tr>
<td align='center'>{{ forloop.counter }}</td>
<td>{{ row.0.title }}</td>
<td>{{ row.1.title }}</td>
<td>{{ row.2 }}</td>
<td> </td>
</tr>
{% endfor %}
</tbody>
<tfoot>
<tr>
<td colspan="5" class="legal">
<p>
By signing and by your presence at the event, you consent to be photographed and/or filmed.
Your signature constitutes your consent to such photography/filming and to any use of your appearance, voice, or
name, in any and all media by ESN VUT Brno, z.s. and Vysoké Učení Technické v Brně. You take full legal
responsibility for your actions, and you agree that the organizers are not legally liable
for any injuries or damages that could happen to you during the event.
</p>
</td>
</tr>
</tfoot>
</table>
<h1 class="break-before">{{ spec.title }}</h1>
<h2><strong>SUBSTITUTES</strong></h2>
<h3>{{ spec.subtitle }}</h3>
<h3>Welcome Week Summer 2023</h3>
<table>
<thead>
<tr>
<th>#</th>
<th>Last name</th>
<th>First name</th>
<th>Phone number</th>
<th>Signature</th>
</tr>
</thead>
<tbody>
{% for row in '00000000000000000000000000000000000'|make_list %}
<tr class="break-before">
<td align='center'>{{ forloop.counter }}</td>
<td></td>
<td></td>
<td></td>
<td> </td>
</tr>
{% endfor %}
</tbody>
<tfoot>
<tr>
<td colspan="5" class="legal">
<p>
By signing and by your presence at the event, you consent to be photographed and/or filmed.
Your signature constitutes your consent to such photography/filming and to any use of your appearance, voice, or
name, in any and all media by ESN VUT Brno, z.s. and Vysoké Učení Technické v Brně. You take full legal
responsibility for your actions, and you agree that the organizers are not legally liable
for any injuries or damages that could happen to you during the event.
</p>
</td>
</tr>
</tfoot>
</table>
</body>
</html>