get_my/client/AdminMgmt/ProductMgmt/prodMgmtTbl.html

40 lines
1.7 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>
{{#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>
<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>
{{> deleteConfirmationModal}}
</template>