Just changes.

This commit is contained in:
Brian McGonagill 2026-01-27 12:42:20 -06:00
parent 5ba618f471
commit 8bd3fb1853
8 changed files with 214 additions and 13 deletions

View 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>