Many changes aded to system.
This commit is contained in:
parent
e0571d14b7
commit
5ba618f471
22 changed files with 640 additions and 57 deletions
23
client/LocationTypes/locationTypeTbl.html
Normal file
23
client/LocationTypes/locationTypeTbl.html
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue