Project

General

Profile

1 26600 sandro.lab
$inspector/master(it={
2
<style type="text/css">
3
table * { font-size: 12px; word-wrap: break-word; }
4
th      { font-weight:bold; }
5
</style>
6
7
<p>Queued, ongoing and sent notifications:</p>
8
9
<table border="1" cellspacing="0" cellpadding="4">
10
	<thead>
11
	<tr>
12
		<th>Destination</th>
13
		<th>Topic</th>
14
		<th>Status</th>
15
		<th>Duration</th>
16
		<th>Error</th>
17
	</tr>
18
	</thead>
19
	<tbody>
20
$log:{
21
	<tr>
22
		<td>$it.destination$</td>
23
		<td>$it.message.topic$</td>
24
		<td>$it.status$</td>
25
		<td><span title="$it.start$ - $it.finish$">$it.duration$</span></td>
26
		<td>$it.errorMessage$</td>
27
	</tr>
28
}$
29
	</tbody>
30
</table>
31
32
33
})$