24 lines
958 B
HTML
24 lines
958 B
HTML
|
|
<aside id="players" class="app {{#if hide}}hidden{{/if}}">
|
||
|
|
<h3 aria-label="{{localize 'PLAYERS.Title'}}" role="button">
|
||
|
|
<i class="fas fa-users"></i>
|
||
|
|
{{ localize "PLAYERS.Title" }}
|
||
|
|
{{#if showOffline}}
|
||
|
|
<i class="players-mode fas fa-angle-down"></i>
|
||
|
|
{{else}}
|
||
|
|
<i class="players-mode fas fa-angle-up"></i>
|
||
|
|
{{/if}}
|
||
|
|
</h3>
|
||
|
|
|
||
|
|
<ol aria-label="{{localize 'PLAYERS.List'}}" tabIndex="0" id="player-list">
|
||
|
|
{{#each users as |user|}}
|
||
|
|
<li class="player {{#if user.isGM}}gm{{/if}} flexrow" data-user-id="{{user._id}}">
|
||
|
|
<span class="player-active {{#if user.active}}active{{else}}inactive{{/if}}"
|
||
|
|
style="background: {{user.color}}; border: 1px solid {{user.border.css}}"></span>
|
||
|
|
<span class="player-name {{#if user.isSelf}}self{{/if}}" data-tooltip="{{user.displayName}}">
|
||
|
|
{{user.displayName}}
|
||
|
|
</span>
|
||
|
|
</li>
|
||
|
|
{{/each}}
|
||
|
|
</ol>
|
||
|
|
</aside>
|