aviau 59a5fb561d Removed trailing spaces
Change-Id: Ie827f1915246863c1a959e5c74fff92f2e648318
2015-05-20 12:13:19 -04:00

21 lines
609 B
HTML

<table ng-controller="TacticalCurrentHealth"
class="current-health"
ng-if="hostsRatio != undefined && servicesRatio != undefined">
<thead>
<tr>
<th>Current health</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
<tr>
<td class="layout__half">
<just-gage id="allservices" class="someClass" min=0 max=100 value=servicesRatio title="ALL SERVICES"></just-gage>
</td>
<td class="layout__half">
<just-gage id="allhosts" class="someClass" min=0 max=100 value=hostsRatio title="ALL HOSTS"></just-gage>
</td>
</tr>
</tbody>
</table>