41 lines
1.8 KiB
HTML
Executable File
41 lines
1.8 KiB
HTML
Executable File
<template name="displayUserIcons">
|
|
<td>{{#if isUserSharingVideo user}}
|
|
<span class="userListSettingIcon glyphicon glyphicon-facetime-video" rel="tooltip" data-placement="bottom" title="{{user.name}} is sharing their webcam"></span>
|
|
{{/if}}</td>
|
|
|
|
<td>{{#if isUserSharingAudio user}}
|
|
{{#if isUserMuted user}}
|
|
<span class="userListSettingIcon glyphicon glyphicon-volume-off" rel="tooltip" data-placement="bottom" title="{{user.name}} is muted"></span>
|
|
{{else}}
|
|
{{#if isUserTalking user}}
|
|
<span class="userListSettingIcon glyphicon glyphicon-volume-up" rel="tooltip" data-placement="bottom" title="{{user.name}} is talking"></span>
|
|
{{else}}
|
|
<span class="userListSettingIcon glyphicon glyphicon-volume-down" rel="tooltip" data-placement="bottom" title="{{user.name}} is not talking"></span>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{/if}}</td>
|
|
|
|
<td>{{#if user.presenter}}<span class="userListSettingIcon glyphicon glyphicon-picture" rel="tooltip" data-placement="bottom" title="{{user.name}} is the presenter"></span>{{/if}}</td>
|
|
|
|
<td>{{#if user.raise_hand}}<span class="userListSettingIcon glyphicon glyphicon-hand-up" rel="tooltip" data-placement="bottom" title="{{user.name}} has raised their hand"></span>{{/if}}</td>
|
|
</template>
|
|
|
|
<template name="usernameEntry">
|
|
<td class="userNameContainer">
|
|
{{#if isCurrentUser userId}}
|
|
<p class="userNameEntry" rel="tooltip" data-placement="bottom" title="{{user.name}} (you)">
|
|
<strong>{{user.name}} (you)</strong>
|
|
</p>
|
|
{{else}}
|
|
<p class="userNameEntry" rel="tooltip" data-placement="bottom" title="{{user.name}}">
|
|
{{user.name}}
|
|
</p>
|
|
{{/if}}
|
|
</td>
|
|
</template>
|
|
|
|
<template name="userItem">
|
|
{{> usernameEntry}}
|
|
{{> displayUserIcons}}
|
|
</template>
|