mirror of https://github.com/rancher/ui.git
29 lines
739 B
Handlebars
29 lines
739 B
Handlebars
<section>
|
|
<div class="box mb-20">
|
|
{{t 'projectList.indexTemplate.subtext' appName=settings.appName htmlSafe=true}}
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
{{#sortable-table
|
|
classNames="grid fixed mb-0 bordered sortable-table"
|
|
bulkActions=false
|
|
paging=true
|
|
search=true
|
|
sortBy=sortBy
|
|
descending=descending
|
|
headers=headers
|
|
body=model
|
|
fullRows=true
|
|
as |sortable kind row|
|
|
}}
|
|
{{#if (eq kind "row")}}
|
|
{{project-template-row model=row}}
|
|
{{else if (eq kind "norows")}}
|
|
<tr>
|
|
<td colspan="{{sortable.fullColspan}}" class="text-center text-muted">{{t 'projectList.indexTemplate.table.body.noData'}}</td>
|
|
</tr>
|
|
{{/if}}
|
|
{{/sortable-table}}
|
|
</section>
|