15 lines
412 B
Handlebars
15 lines
412 B
Handlebars
|
<ul>
|
||
|
<li class={{if breadcrumbs "" "is-active"}}>
|
||
|
{{#fs/link allocation=allocation task=task}}
|
||
|
{{if task task.name allocation.shortId}}
|
||
|
{{/fs/link}}
|
||
|
</li>
|
||
|
{{#each breadcrumbs as |breadcrumb|}}
|
||
|
<li class={{if breadcrumb.isLast "is-active"}}>
|
||
|
{{#fs/link allocation=allocation task=task path=breadcrumb.path}}
|
||
|
{{breadcrumb.name}}
|
||
|
{{/fs/link}}
|
||
|
</li>
|
||
|
{{/each}}
|
||
|
</ul>
|