Parent: [9b8d78] (diff)

Child: [719ff2] (diff)

Download this file

notificationStatistics.html    44 lines (41 with data), 1.0 kB

 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
<!-- 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 Rule (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>
<br><br>
<center><h3>Total Values</h3></center>
<br>
<table class="table">
<thead>
<tr>
<th>Total Notifications</th>
<th>Total Notifications Applied by Rule</th>
<th>Average Values of Total Notifications</th>
<th>Percentage of Total Notifications Applied by Rule with Total Notifications </th>
</tr>
</thead>
<tbody>
<td>{{totalNotifications}}</td>
<td>{{totalNotificationsApplyByRules}}</td>
<td>{{averageValue}}</td>
<td>{{percentage}} %</td>
</tbody>
</table>