1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-26 07:39:04 +02:00
keeweb/app/templates/list-table.hbs
2020-04-23 19:24:39 +02:00

14 lines
347 B
Handlebars

<table class="list__table">
<thead>
<tr>
<th><i class="fa fa-bars muted-color list__table-options"></i></th>
{{#each columns as |col|}}
{{#if col.enabled}}<th>{{Res col.name}}</th>{{/if}}
{{/each}}
</tr>
</thead>
<tbody>
{{{itemsHtml}}}
</tbody>
</table>