bansho/app/components/directive/host/host_services_list/host_services_list.html

20 lines
742 B
HTML

<div ng-show="param.host.services.length >= 1" class="subcomponent__live">
<h2>Services</h2>
<table class="data-table">
<thead>
<tr>
<th>Service description</th>
<th>Acknowledged</th>
<th>State</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="service in param.host.services">
<td><a href="#/view?view=service&host_name={{service.service_host_name}}&description={{service.service_service_description}}">{{service.service_service_description}}</a>
<td>{{service.service_acknowledged ? "Yes" : "No"}}</td>
<td><bansho-service-state-icon state="service.service_state"></bansho-service-state-icon>{{service.service_state}}</td>
</tr>
</tbody>
</table>
</div>