Vincent Fournier 5d87fdaacd Improve code naming
Change-Id: If4837f71caca6d594e141fff830c7c2c08376e03
2015-08-24 20:33:27 -04:00

27 lines
714 B
HTML

<table ng-controller="TacticalStatusOverViewCtrl"
class="table"
ng-if="hostProblems != undefined && totalHosts != undefined && serviceProblems != undefined && totalServices != undefined">
<thead>
<tr>
<th>Status overview</th>
<th>#</th>
<th>
<span class="visuallyhidden">Notifications number</span>
<i class="ico-bell-alt"></i>
</th>
</tr>
</thead>
<tbody>
<tr>
<th>Hosts</th>
<td>{{totalHosts}}</td>
<td class="state--error alerts">{{hostProblems}}</td>
</tr>
<tr>
<th>Services</th>
<td>{{totalServices}}</td>
<td class="state--error alerts">{{serviceProblems}}</td>
</tr>
</tbody>
</table>