nfv/nfv/nfv-vim/nfv_vim/webserver/templates/host_aggregates.handlebars

41 lines
1.4 KiB
Handlebars

<div class="tab-headers">
<ul id="host_aggregates" class="nav nav-tabs" data-sticky-tabs="sticky">
<li class="active">
<a><h4>Host Aggregates</h4></a>
</li>
</ul>
</div>
<div class="tab-content">
<div class="tab-pane active">
<table class="table table-bordered table-striped main-table">
<thead>
<tr>
<th class="sortable normal_column">Name</th>
<th class="sortable normal_column">Availability Zone</th>
<th class="sortable normal_column">Hosts</th>
</tr>
</thead>
<tbody>
{{#host_aggregates}}
<tr>
<td>{{name}}</td>
<td>{{availability_zone}}</td>
<td>{{host_names}}</td>
</tr>
{{/host_aggregates}}
<tfoot>
<tr>
<td colspan="3">
{{#ifCompare host_aggregates.length '==' '1'}}
<span class="table_count">Displaying {{host_aggregates.length}} item</span>
{{else}}
<span class="table_count">Displaying {{host_aggregates.length}} items</span>
{{/ifCompare}}
</td>
</tr>
</tfoot>
</table>
</div>
</div>