metropolis/frontend/src/components/itemList.hbs
2021-07-25 18:01:11 +02:00

24 lines
765 B
Handlebars

<div class='table-container'>
<table class='table is-striped is-hoverable is-fullwidth'>
<thead>
<tr>
<th>Name</th>
<th>EAN-13</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{{#each nodes}}
<tr>
<td>{{name}}</td>
<td>{{ean13}}</td>
<td><button class='item-open-details button is-light is-small' data-id='{{id}}'>details</button></td>
</tr>
{{/each}}
</tbody>
</table>
</div>
<nav class='pagination' role='navigation' aria-label='pagination'>
<a class='pagination-previous' id='items-previous' {{#unless previousPage}}disabled{{/unless}} >previous</a>
<a class='pagination-next' id='items-next' {{#unless nextPage}}disabled{{/unless}}>next</a>
</nav>