github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/ui/app/templates/components/fs-directory-entry.hbs (about) 1 <tr data-test-entry> 2 <td> 3 {{#link-to "allocations.allocation.task.fs" task.allocation task pathToEntry activeClass="is-active"}} 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 {{/link-to}} 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>