github.com/aminovpavel/nomad@v0.11.8/ui/app/templates/components/fs/directory-entry.hbs (about) 1 <tr data-test-entry> 2 <td> 3 {{#fs/link allocation=allocation task=task path=pathToEntry}} 4 {{#if entry.IsDir}} 5 {{x-icon "folder-outline"}} 6 {{else}} 7 {{x-icon "file-outline"}} 8 {{/if}} 9 10 <span class="name" data-test-name>{{entry.Name}}</span> 11 {{/fs/link}} 12 </td> 13 <td class="has-text-right" data-test-size>{{#unless entry.IsDir}}{{format-bytes entry.Size}}{{/unless}}</td> 14 <td class="has-text-right" title={{format-ts entry.ModTime}} data-test-last-modified>{{moment-from entry.ModTime interval=1000}}</td> 15 </tr>