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>
|
2024-07-26 11:58:03 -05:00
|
|
|
<th>
|
|
|
|
|
{{#if $eq searchStore false}}
|
|
|
|
|
Store <i class="material-icons clickable right" id="filterStore">search</i>
|
|
|
|
|
{{else}}
|
|
|
|
|
<div style="width: 100%;">
|
|
|
|
|
<input type="text" class="searchStore" id="searchStore" style="width: 85%;" /> <i class="material-icons clickable" id="closeStoreFilter">close</i>
|
|
|
|
|
</div>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</th>
|
2022-08-15 18:07:39 -05:00
|
|
|
<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>{{prodStore}}</td>
|
|
|
|
|
<td>
|
2024-07-23 12:01:33 -05:00
|
|
|
<i class="material-icons clickable deleteProduct modal-trigger" data-target="modalDelete">delete</i>
|
2022-08-25 20:15:03 -05:00
|
|
|
<i class="material-icons clickable editProduct">edit</i>
|
2022-08-15 18:07:39 -05:00
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-08-26 11:18:18 -05:00
|
|
|
{{> deleteConfirmationModal}}
|
2022-08-15 18:07:39 -05:00
|
|
|
</template>
|