mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
31 lines
No EOL
1.2 KiB
HTML
31 lines
No EOL
1.2 KiB
HTML
<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 tooltipped" data-position="top" data-tooltip="Delete Product">delete</i>
|
|
<i class="material-icons clickable editProduct tooltipped" data-position="top" data-tooltip="Edit Product">edit</i>
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</template> |