Just changes.
This commit is contained in:
parent
5ba618f471
commit
8bd3fb1853
8 changed files with 214 additions and 13 deletions
14
client/Locations/locationInfo.html
Normal file
14
client/Locations/locationInfo.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<template name="locationInfo">
|
||||
{{#each parentLocations}}
|
||||
<details>
|
||||
<summary role="button" class="outline topLevel" id="{{_id}}">{{locationName}}</summary>
|
||||
<div>
|
||||
{{#each childLocation}}
|
||||
<details>
|
||||
<summary role="button" class="innerLevel" id="{{_id}}">{{locationName}}</summary>
|
||||
</details>
|
||||
{{/each}}
|
||||
</div>
|
||||
</details>
|
||||
{{/each}}
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue