mirror of https://github.com/rancher/ui.git
24 lines
547 B
Handlebars
24 lines
547 B
Handlebars
{{#if scope.currentCluster.isWindows}}
|
|
<BannerMessage @color="bg-warning" @message={{t "windowsCluster.pipelines" }} />
|
|
{{else}}
|
|
<section class="header">
|
|
<h1>
|
|
{{t "nav.infra.pipelines"}}
|
|
</h1>
|
|
<div class="right-buttons">
|
|
{{#link-to "repositories" class="btn btn-sm bg-primary"}}
|
|
{{t "repositories.enable"}}
|
|
{{/link-to}}
|
|
</div>
|
|
</section>
|
|
|
|
<section class="instances">
|
|
{{pipeline-jobs-table
|
|
body=model
|
|
bulkActions=true
|
|
search=true
|
|
paging=true
|
|
}}
|
|
</section>
|
|
{{/if}}
|