mirror of https://github.com/rancher/ui.git
29 lines
697 B
Handlebars
29 lines
697 B
Handlebars
<td>
|
|
{{badge-state model=model}}
|
|
</td>
|
|
|
|
<td>
|
|
<div class="clip">
|
|
{{#copy-inline clipboardText=model.displayUri class="with-clip" size="small"}}{{model.displayUri}}{{/copy-inline}} /
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
{{#if model.mounts.length}}
|
|
{{#each model.mounts as |mount|}}
|
|
<div>
|
|
<a href="{{href-to "container" mount.instanceId}}">{{mount.instance.name}}</a>:{{mount.path}}
|
|
{{#if (eq mount.permissions "ro")}}
|
|
<span class="text-muted">{{t 'volumeRow.mounts.readOnly'}}</span>
|
|
{{/if}}
|
|
</div>
|
|
{{/each}}
|
|
{{else}}
|
|
<span class="text-muted">{{t 'generic.none'}}</span>
|
|
{{/if}}
|
|
</td>
|
|
|
|
<td class="actions">
|
|
{{action-menu model=model}}
|
|
</td>
|