mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
40 lines
No EOL
1.7 KiB
HTML
40 lines
No EOL
1.7 KiB
HTML
<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> |