2022-08-15 18:07:39 -05:00
|
|
|
<template name="prodMgmtTbl">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col s12 m12 l12">
|
|
|
|
|
<table class="highlight striped responsive-table">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2022-08-25 15:39:27 -05:00
|
|
|
<th>
|
|
|
|
|
{{#if $eq searchProd false}}
|
|
|
|
|
Product Name <i class="material-icons clickable right" id="filterProds">search</i>
|
|
|
|
|
{{else}}
|
|
|
|
|
<div style="width: 100%;">
|
|
|
|
|
<input type="text" class="searchProds" id="searchProds" style="width:85%" /> <i class="material-icons clickable" id="closeFilter">close</i>
|
|
|
|
|
</div>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</th>
|
2022-08-15 18:07:39 -05:00
|
|
|
<th>Category</th>
|
|
|
|
|
<th>Store</th>
|
|
|
|
|
<th>Location</th>
|
|
|
|
|
<th>Actions</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{#each products}}
|
|
|
|
|
<tr>
|
2022-08-25 15:39:27 -05:00
|
|
|
<td>{{prodName}} </td>
|
2022-08-15 18:07:39 -05:00
|
|
|
<td>{{prodCategory}}</td>
|
|
|
|
|
<td>{{prodStore}}</td>
|
|
|
|
|
<td>{{prodLocation}}</td>
|
|
|
|
|
<td>
|
2022-08-25 20:15:03 -05:00
|
|
|
<i class="material-icons clickable deleteProduct">delete</i>
|
|
|
|
|
<i class="material-icons clickable editProduct">edit</i>
|
2022-08-15 18:07:39 -05:00
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|