open-assets/client/LocationTypes/locationTypeTbl.html

23 lines
No EOL
635 B
HTML

<template name="locationTypeTbl">
<table>
<thead>
<tr>
<th>Type</th>
<th>Description</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{{#each types}}
<tr>
<td>{{locationTypeName}}</td>
<td>{{locationTypeDesc}}</td>
<td>
<i class="material-icons">edit</i>
<i class="material-icons">delete</i>
</td>
</tr>
{{/each}}
</tbody>
</table>
</template>