26 lines
No EOL
648 B
Handlebars
26 lines
No EOL
648 B
Handlebars
<header data-test-id="file-table-action-bar">
|
|
<label data-test-action="file-table-select-all">
|
|
Selected {{selectedFilePaths.length}}
|
|
</label>
|
|
<button data-test-action="file-table-download-selected">Download Selected</button>
|
|
</header>
|
|
|
|
<table>
|
|
<thead data-test-id="file-table-header">
|
|
<th> </th>
|
|
<th>Name</th>
|
|
<th>Device</th>
|
|
<th>Path</th>
|
|
<th> </th>
|
|
<th>Status</th>
|
|
</thead>
|
|
<tbody>
|
|
{{#each files as | file |}}
|
|
{{file-table-item
|
|
file=file
|
|
selectedFilePaths=selectedFilePaths
|
|
click=(action "toggleSelectedPath" file.path)
|
|
}}
|
|
{{/each}}
|
|
</tbody>
|
|
</table> |