14 lines
473 B
HTML
14 lines
473 B
HTML
|
|
<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>
|