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/pendingPipelines.html

21 lines
746 B

<div class="pipeline-panel">
<div ng-hide="model.fetched">
<div class="align-center">
<div class="spinner spinner-lg"></div>
</div>
</div>
<div ng-show="model.fetched">
<div ng-hide="model.job.builds.length" class="align-center">
<div>
<h2>No Pipeline Available</h2>
<p>Pipeline is a kind of build which uses Jenkins Workflow internally which has multiple Stages. You will see the active pipelines here after you add a build to this project</p>
</div>
</div>
<div ng-show="model.job.builds.length">
<div ng-repeat="build in model.job.builds | filter:model.filterText track by $index">
<div pipeline-view></div>
</div>
</div>
</div>
</div>