-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathemail_template
79 lines (72 loc) · 1.33 KB
/
email_template
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
<!DOCTYPE html>
<html>
<head>
<div id="charts">
<a id="All" href="<=graph_url_1=>" target="_blank">
<img src="<=graph_url_1_image=>"></a>
<a id="Pie" href="<=graph_url_2=>" target="_blank">
<img src="<=graph_url_2_image=>"></a>
<a id="Most" href="<=graph_url_3=>" target="_blank">
<img src="<=graph_url_3_image=>"></a>
<a id="Trend" href="<=graph_url_4=>" target="_blank">
<img src="<=graph_url_4_image=>"></a>
<a id="dynamic_trend" href="<=graph_url_5=>" target="_blank">
<img src="<=graph_url_5_image=>"></a>
</br>
<style>
.charts{
margin: 50px 0;
text-align: center;
}
table {
width:100%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 20px;
text-align: left;
}
table#t01 tr:nth-child(even) {
background-color: #eee;
}
table#t01 tr:nth-child(odd) {
background-color: #fff;
}
table#t01 td:nth-child(even) {
color: red;
}
table#t01 th {
background-color: skyblue;
color: black;
}
table#t01 {
table-layout: auto;
width: 100%;
}
td.myclass{
text-align:left;
vertical-align:middle;
color:red;
}
a{ display:block; margin-bottom:5px;}
a:hover{
text-decoration: none
}
a{
color: red
}
</style>
</head>
<body>
<table id="t01">
<tr>
<th>Author Name</th>
<th>Failed Test Names</th>
</tr>
<=Report=>
</table>
</body>
</html>