25 lines
1.0 KiB
HTML
25 lines
1.0 KiB
HTML
|
|
<nav id="navigation" class="app flexrow {{#if collapsed}}collapsed{{/if}}" data-tooltip-direction="CENTER"
|
||
|
|
aria-label="{{localize 'SCENES.NavLabel'}}">
|
||
|
|
{{#if scenes}}
|
||
|
|
<a id="nav-toggle" class="nav-item" aria-label="{{localize 'SCENES.ToggleNav'}}" role="button" data-tooltip="SCENES.ToggleNav" alt="{{localize 'SCENES.ToggleNav'}}">
|
||
|
|
<i class="fas fa-caret-{{#if collapsed}}down{{else}}up{{/if}}"></i>
|
||
|
|
</a>
|
||
|
|
{{/if}}
|
||
|
|
|
||
|
|
<ol id="scene-list">
|
||
|
|
{{#each scenes}}
|
||
|
|
<li class="scene nav-item {{this.css}}" data-scene-id="{{this.id}}" {{#if this.tooltip}}data-tooltip="{{this.tooltip}}"{{/if}}>
|
||
|
|
<a class="scene-name">
|
||
|
|
{{#if this.active}}<i class="fas fa-bullseye"></i>{{/if}}
|
||
|
|
{{{this.name}}}
|
||
|
|
</a>
|
||
|
|
<ul class="scene-players">
|
||
|
|
{{#each this.users as |user i|}}
|
||
|
|
<li class="scene-player" style="background-color: {{user.color}};">{{user.letter}}</li>
|
||
|
|
{{/each}}
|
||
|
|
</ul>
|
||
|
|
</li>
|
||
|
|
{{/each}}
|
||
|
|
</ol>
|
||
|
|
</nav>
|