Parent: [798bd2] (diff)

Child: [a08332] (diff)

Download this file

notificationStatistics.html    24 lines (22 with data), 554 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!-- made by Miguel Rodrigues @ KBZ miguel.rodrigues@knowledgebiz.pt -->
<h1>Statistics for {{appID}}</h1>
<table class="table">
<thead>
<tr>
<th>Date</th>
<th>Notifications Applied by Rules (True/False)</th>
<th>Subject Value of Notification</th>
<th>Subject of Notification</th>
<th>RuleID</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="stat in statistics">
<td>{{stat.date}}</td>
<td>{{stat.result}}</td>
<td>{{stat.subjectValue}}</td>
<td>{{stat.subject}}</td>
<td>{{stat.rulesID}}</td>
</tr>
</tbody>
</table>