{{#let '/' as |separator|}} {{#let (concat (join separator (slice 0 -1 (split route.params.key separator))) separator) as |parentKey|}} {{#let route.params.dc route.params.partition route.params.nspace loader.data as |dc partition nspace item|}}
  1. Key / Values
  2. {{#if (not-eq parentKey separator)}} {{#let (split parentKey separator) as |parts|}} {{#each parts as |breadcrumb index|}} {{#if (gt breadcrumb.length 0)}} {{! if breadcrumb isn't '' then slice of enough of the parentKey }} {{! to make the correct href. 'Enough' is the current index plus 1.}} {{! We push on a '' here so make sure we get a trailing slash/separator }}
  3. {{breadcrumb}}
  4. {{/if}} {{/each}} {{/let}} {{/if}}

{{#if (and item.Key (not-eq item.Key parentKey))}} {{left-trim item.Key parentKey}} {{else}} {{/if}}

{{! if a KV has a session `Session` will always be populated despite any specific session permissions }} {{#if item.Session}}

Warning. This KV has a lock session. You can edit KV's with lock sessions, but we recommend doing so with care, or not doing so at all. It may negatively impact the active node it's associated with. See below for more details on the Lock Session and see our documentation for more information.

{{/if}} {{! session is slightly different to item.Session as we only have session if you have session:read perms}} {{#if (and item.Session (can "read sessions"))}} {{#if session}} {{!FIXME}} {{/if}} {{/if}}
{{/let}}
{{/let}} {{/let}}