bigbluebutton-Github/bigbluebutton-html5/app/client/views/users/users_list.html
2015-03-05 17:55:23 +00:00

16 lines
438 B
HTML
Executable File

<template name="usersList">
<div id="{{id}}" {{visibility name}} class="component">
<h3 class="title gradientBar"><span class="glyphicon glyphicon-user"></span> Participants: {{getMeetingSize}} User(s)</h3>
<div id="user-contents">
<div class="userlist ScrollableWindowY">
{{#each getUsersInMeeting}}
<div id="content">
{{>userItem}}
</div>
{{/each}}
</div>
</div>
</div>
</template>