-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpdf_template_1.html
More file actions
39 lines (39 loc) · 1.42 KB
/
pdf_template_1.html
File metadata and controls
39 lines (39 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sample</title>
<style>
h1 {
font: 200% calibri;
}
</style>
</head>
<body>
<h1 style="text-align:center"><strong>Аналитика по зарплатам и городам для профессии {{name}}</strong></h1>
<img src="D:\PyCharm.Projects\pythonProject6\graph1.png" align="center">
<h2 style="text-align:center; "><strong>Статистика по годам</strong></h2>
<table style="font-family: Verdana, Geneva, Tahoma, sans-serif; width: 100%; border-collapse: collapse;">
<thead>
<tr>
{% for column_cells in sheet1.columns: %}
<th style="border: 1px solid black; font-size: 18px; padding: 5px; text-align: center">
{{ column_cells[0].value}}
</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in range(2, sheet1.max_row + 1): %}
<tr>
{% for col in range(1, sheet1.max_column + 1): %}
<td style="padding: 5px; border: 1px solid black; font-size: 14px; font-weight: normal; text-align: center">
{{ sheet1.cell(row, col).value }}
</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>