Many changes aded to system.

This commit is contained in:
Brian McGonagill 2026-01-24 13:49:38 -06:00
parent e0571d14b7
commit 5ba618f471
22 changed files with 640 additions and 57 deletions

View file

@ -0,0 +1,23 @@
<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>