1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-30 08:10:57 +02:00
keeweb/app/templates/list-table.hbs
2016-06-11 17:18:11 +03:00

14 lines
343 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>
{{{items}}}
</tbody>
</table>