mirror of https://github.com/rancher/ui.git
37 lines
1.1 KiB
Handlebars
37 lines
1.1 KiB
Handlebars
{{#if bulkActions}}
|
|
<td valign="middle" class="row-check" style="padding-top: 2px;">
|
|
{{check-box nodeId=model.id}}
|
|
</td>
|
|
{{/if}}
|
|
<td data-title="{{dt.state}}" class="state">
|
|
{{badge-state model=model}}
|
|
</td>
|
|
{{#if showCluster}}
|
|
<td data-title="{{dt.cluster}}">
|
|
<a href="{{href-to 'authenticated.clusters.cluster.index' model.cluster.id}}">{{model.cluster.displayName}}</a>
|
|
</td>
|
|
{{/if}}
|
|
<td data-title="{{dt.name}}">
|
|
<a href="{{href-to 'authenticated.project.index' model.id}}" {{action "switchTo" model.id}}>{{model.displayName}}</a>
|
|
</td>
|
|
<td colspan="3" class="text-center text-muted">
|
|
Counts Coming Soon
|
|
</td>
|
|
<!--
|
|
<td data-title="{{dt.stacks}}" class="text-center">
|
|
{{model.numStacks}}
|
|
</td>
|
|
<td data-title="{{dt.services}}" class="text-center">
|
|
{{model.numServices}}
|
|
</td>
|
|
<td data-title="{{dt.containers}}" class="text-center">
|
|
{{model.numContainers}}
|
|
</td>
|
|
-->
|
|
<td data-title="{{dt.default}}" class="text-center">
|
|
{{#if model.isDefault}}<i class="icon icon-star-fill"></i>{{else}}<span class="text-muted">–</span>{{/if}}
|
|
</td>
|
|
<td data-title="{{dt.actions}} "class="actions">
|
|
{{action-menu model=model}}
|
|
</td>
|