You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aggregation-platform/plugins/kubernetes/html/hosts.html

44 lines
1.3 KiB

<div class="row" ng-controller="Kubernetes.HostsController">
<script type="text/ng-template" id="hostLinkTemplate.html">
<div class="ngCellText">
</div>
</script>
<div class="row">
<div hawtio-breadcrumbs></div>
</div>
<div class="row">
<div hawtio-tabs></div>
</div>
<div class="row filter-header">
<div class="col-md-12">
<span ng-show="!id">
<hawtio-filter ng-show="model.hosts.length"
ng-model="tableConfig.filterOptions.filterText"
css-class="input-xxlarge"
placeholder="Filter hosts..."></hawtio-filter>
</span>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div ng-hide="model.fetched">
<div class="align-center">
<i class="fa fa-spinner fa-spin"></i>
</div>
</div>
<div ng-show="model.fetched">
<div ng-hide="model.hosts.length" class="align-center">
<p class="alert alert-info">There are no hosts currently running.</p>
</div>
<div ng-show="model.hosts.length">
<table class="table table-bordered table-striped" ui-if="kubernetes.selectedNamespace"
hawtio-simple-table="tableConfig"></table>
</div>
</div>
</div>
</div>
</div>