Thibault Cohen fddd4693e3 Add css for host status page
Change-Id: I65e18724b9cd4d988a47f5b9c048ea183d961b29
2015-06-01 16:22:00 -04:00

36 lines
851 B
HTML

<div ng-controller="HostInfoCtrl" class="subcomponent__live">
<h2>Info</h2>
<table class="data-table">
<tbody>
<tr>
<td>Last check</td>
<td>{{data.live.last_check | timeElapsed}}</td>
</tr>
<tr>
<td>Check period</td>
<td>{{data.config.check_period}}</td>
</tr>
<tr>
<td>Notification period</td>
<td>{{data.config.notification_period}}</td>
</tr>
<tr>
<td>Active checks</td>
<td>{{active_checks}}</td>
</tr>
<tr>
<td>Notifications</td>
<td>{{notifications_enabled}}</td>
</tr>
<tr>
<td>Event Handler</td>
<td>{{event_handler_enabled}}</td>
</tr>
<tr>
<td>Flag detection</td>
<td>{{flap_detection_enabled}}</td>
</tr>
</tbody>
</table>
</div>