-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall_activities_pdf.html
83 lines (74 loc) · 1.5 KB
/
all_activities_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
<!DOCTYPE html>
<!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;
}
thead {
display: table-header-group;
}
tfoot {
display: table-row-group;
}
td {
padding: 0 4px
}
td.activites {
line-height: 16px;
font-size: .6em;
}
.activites {
width: 55%
}
.state {
line-height: 16px;
font-size: .6em;
text-align: center;
}
</style>
</head>
<body>
<h1>Panda Point Schedule: 30th Jan</h1>
<h3>Welcome Week Summer 2023 | ESN VUT Brno</h3>
<table>
<thead>
<tr>
<th>#</th>
<th>Last name</th>
<th>First name</th>
<th>Events</th>
<th>Has/Wants</th>
<th>Time</th>
</tr>
</thead>
<tbody>
{% for i, first, last, activities, state, time in people %}
<tr>
<td align='center'>{{ i }}</td>
<td>{{ first }}</td>
<td class='last'>{{ last }}</td>
<td class='activites'>{{ activities }}</td>
<td class="state">{{ state }}</td>
<td align='center'><strong>{{ time }}</strong></td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>