-
Notifications
You must be signed in to change notification settings - Fork 2
/
dump.html
73 lines (73 loc) · 2.33 KB
/
dump.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
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>[(${companyName})] OpenTree Employee Dump</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<style>
body {
font: 12px 'Roboto', sans-serif;
}
table {
border: none;
padding: 0;
}
</style>
</head>
<body>
<table>
<tr>
<th>id,</th>
<th>name,</th>
<th>manager_id,</th>
<th>manager,</th>
<th>location,</th>
<th>title,</th>
<th>email,</th>
<th>type,</th>
<th>cost_center,</th>
<th>cost_center_hierarchy,</th>
<th>active,</th>
<th>last_updated</th>
</tr>
<tr th:each="employee : ${employees}">
<td>
<span th:text="${employee.employeeId}"></span>,
</td>
<td>
"<span th:text="${employee.name}"></span>",
</td>
<td>
<span th:text="${employee.managerId}"></span>,
</td>
<td>
"<span th:text="${employee.managerName}"></span>"
</td>
<td>
"<span th:text="${employee.location}"></span>",
</td>
<td>
"<span th:text="${employee.title}"></span>",
</td>
<td>
<span th:text="${employee.email}"></span>,
</td>
<td>
<span th:text="${employee.type}"></span>,
</td>
<td>
"<span th:text="${employee.costCenter}"></span>",
</td>
<td>
"<span th:text="${employee.costCenterHierarchy}"></span>",
</td>
<td>
<span th:text="${employee.active}"></span>,
</td>
<td>
"<span th:text="${employee.lastUpdated}"></span>"
</td>
</tr>
</table>
</body>
</html>