mirror of https://github.com/rancher/ui.git
45 lines
1.0 KiB
Handlebars
45 lines
1.0 KiB
Handlebars
<section class="header clearfix">
|
|
<div class="pull-left"><h1>{{t "multiClusterAppsPage.header"}}</h1></div>
|
|
|
|
<div class="right-buttons">
|
|
{{#link-to
|
|
"catalog"
|
|
classNames="btn btn-sm bg-primary mr-10"
|
|
}}
|
|
<i class="icon icon-gear icon-fw"/>{{t "nav.apps.manage"}}
|
|
{{/link-to}}
|
|
|
|
{{#link-to
|
|
"multi-cluster-apps.catalog.index"
|
|
classNames="btn btn-sm bg-primary mr-10"
|
|
}}
|
|
{{t "nav.apps.launch"}}
|
|
{{/link-to}}
|
|
</div>
|
|
</section>
|
|
|
|
<section class="pl-0 pr-0">
|
|
<div class="row mb-15">
|
|
{{search-text searchText=searchText}}
|
|
</div>
|
|
|
|
{{#each filteredApps as |group|}}
|
|
<div class="row flex">
|
|
{{#each group as |app|}}
|
|
<div class="col span-6 mt-0">
|
|
{{multi-cluster-app
|
|
model=app
|
|
}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
{{else}}
|
|
<div class="text-center text-muted">
|
|
{{#if searchText}}
|
|
{{t "multiClusterAppsPage.noMatch"}}
|
|
{{else}}
|
|
{{t "multiClusterAppsPage.noData"}}
|
|
{{/if}}
|
|
</div>
|
|
{{/each}}
|
|
</section> |