25 lines
1.0 KiB
HTML
25 lines
1.0 KiB
HTML
<div ng-controller="Developer.KubeTaskController">
|
|
<div class="row">
|
|
<div hawtio-breadcrumbs></div>
|
|
</div>
|
|
<div class="row">
|
|
<div hawtio-tabs></div>
|
|
</div>
|
|
<div class="row container-content sj_fluid">
|
|
<div class="row align-center mb10" ng-show="tableConfig.data.length <= 0">
|
|
<p class="alert alert-info">当前没有可以查看的任务列表!</p>
|
|
</div>
|
|
<div class="col-md-12 mb10 " >
|
|
<button ng-show="typeFlag && tableConfig.data.length > 0"
|
|
class="btn btn-danger pull-right sj_btn_grey "
|
|
ng-disabled="!id && tableConfig.selectedItems.length == 0"
|
|
ng-click="deleteAll(id || tableConfig.selectedItems)">
|
|
<i class="glyphicon glyphicon-trash"></i> 删除
|
|
</button>
|
|
</div>
|
|
<div class="row mb10" ng-show="tableConfig.data.length > 0" >
|
|
<table class="table table-bordered table-striped sj_content_table" hawtio-simple-table="tableConfig" />
|
|
</div>
|
|
</div>
|
|
</div>
|