forked from theshadowco/sonar-helper
-
Notifications
You must be signed in to change notification settings - Fork 3
/
example-report.html
104 lines (97 loc) · 1.54 KB
/
example-report.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Отчет sonar-helper</title>
<meta name="description" content="Отчет sonar-helper">
</head>
<style>
table {
margin: 20px 0;
text-align: left;
border: 1px solid gray;
border-spacing: 0px;
border-radius: 3px;
font-size: 14px;
width: auto;
}
td,
th {
border: 1px solid gray;
padding: 3px;
}
table#head {
margin: 20px 0;
text-align: left;
border: 0px;
border-spacing: 0px;
font-size: 14px;
width: auto;
}
table#head td {
border: 0px;
padding: 3px;
}
</style>
<body>
<h1>Отчеты по проектам</h1>
<h2>Данные формирования</h2>
<table id="head">
<tr>
<td><b>Адрес сервера:</b></td>
<td>http://my.sonar.server:9000</td>
</tr>
<tr>
<td><b>Дата формирования:</b></td>
<td>06.05.2019 14:17:17</td>
</tr>
<tr>
<td><b>Количество отчетов:</b></td>
<td>2</td>
</tr>
</table>
<h2>Отчеты по проектам</h2>
<div>
<table>
<caption><b>Проект: </b>bsp</caption>
<tr>
<th>Метрика</th>
<th>Значение</th>
</tr>
<tr>
<td>Ошибки</td>
<td>0</td>
</tr>
<tr>
<td>Технический долг</td>
<td>16734</td>
</tr>
<tr>
<td>Строки кода</td>
<td>112092</td>
</tr>
</table>
</div>
<div>
<table>
<caption><b>Проект: </b>mdm</caption>
<tr>
<th>Метрика</th>
<th>Значение</th>
</tr>
<tr>
<td>Строки кода</td>
<td>147102</td>
</tr>
<tr>
<td>Ошибки</td>
<td>110</td>
</tr>
<tr>
<td>Технический долг</td>
<td>30632</td>
</tr>
</table>
</div>
</body>
</html>