24 lines
No EOL
550 B
Handlebars
24 lines
No EOL
550 B
Handlebars
|
|
<header data-test-id="file-table-action-bar">
|
|
<label data-test-action="file-table-select-all"></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
|
|
}}
|
|
{{/each}}
|
|
</tbody>
|
|
</table> |