mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 18:35:44 +03:00
21 lines
744 B
Handlebars
21 lines
744 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
~}}
|
|
|
|
<tr data-test-entry>
|
|
<td>
|
|
<Fs::Link @allocation={{this.allocation}} @taskState={{this.taskState}} @path={{this.pathToEntry}}>
|
|
{{#if this.entry.IsDir}}
|
|
<Hds::Icon @name="folder" @isInline={{true}} />
|
|
{{else}}
|
|
<Hds::Icon @name="file" @isInline={{true}} />
|
|
{{/if}}
|
|
|
|
<span class="name" data-test-name>{{this.entry.Name}}</span>
|
|
</Fs::Link>
|
|
</td>
|
|
<td class="has-text-right" data-test-size>{{#unless this.entry.IsDir}}{{format-bytes this.entry.Size}}{{/unless}}</td>
|
|
<td class="has-text-right" title={{format-ts this.entry.ModTime}} data-test-last-modified>{{moment-from this.entry.ModTime interval=1000}}</td>
|
|
</tr>
|