ui/lib/shared/addon/components/container-shell/template.hbs

19 lines
603 B
Handlebars

<h2 class='mb-10'>
<i class="icon icon-terminal"></i> {{t 'modalShell.title' instanceName=instance.displayName}}
<div class="console-status text-muted pull-right">{{t (concat-str 'containerShell.status' status character='.') error=error}}</div>
</h2>
{{#if showProtip}}
<div class="protip">
{{t 'containerShell.protip' key=alternateLabel}}
</div>
{{/if}}
<div class="shell-container">
<div class="shell-body" contenteditable="{{contenteditable}}" oncontextmenu={{action "contextMenuHandler"}}>
</div>
</div>
{{#if hasBlock}}
<div class="footer-actions">
{{yield}}
</div>
{{/if}}