get_my/client/AdminMgmt/ProductMgmt/prodMgmtTbl.html

31 lines
1.1 KiB
HTML
Raw Normal View History

<template name="prodMgmtTbl">
<div class="row">
<div class="col s12 m12 l12">
<table class="highlight striped responsive-table">
<thead>
<tr>
<th>Product Name</th>
<th>Category</th>
<th>Store</th>
<th>Location</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{{#each products}}
<tr>
<td>{{prodName}}</td>
<td>{{prodCategory}}</td>
<td>{{prodStore}}</td>
<td>{{prodLocation}}</td>
<td>
<i class="material-icons clickable deleteProduct">delete</i>
<i class="material-icons clickable editProduct">edit</i>
</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</div>
</template>