1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-22 07:16:38 +02:00
keeweb/app/templates/list-table.hbs

14 lines
347 B
Handlebars
Raw Normal View History

2015-11-21 15:55:42 +01:00
<table class="list__table">
<thead>
<tr>
2016-06-10 21:08:28 +02:00
<th><i class="fa fa-bars muted-color list__table-options"></i></th>
2016-06-11 16:18:11 +02:00
{{#each columns as |col|}}
{{#if col.enabled}}<th>{{Res col.name}}</th>{{/if}}
{{/each}}
2015-11-21 15:55:42 +01:00
</tr>
</thead>
<tbody>
2020-04-23 19:24:39 +02:00
{{{itemsHtml}}}
2015-11-21 15:55:42 +01:00
</tbody>
</table>