bigbluebutton-Github/bigbluebutton-html5/app/client/views/users/users_list.html

16 lines
431 B
HTML
Raw Normal View History

2014-06-07 06:19:09 +08:00
<template name="usersList">
<div id="{{id}}" {{visibility name}} class="component">
2015-04-22 05:42:34 +08:00
<h3 class="title gradientBar"><span class="glyphicon glyphicon-user heading"></span> {{getInfoNumberOfUsers}} </h3>
<div id="user-contents">
2015-02-10 23:17:26 +08:00
<div class="userlist ScrollableWindowY">
{{#each getUsersInMeeting}}
<div id="content">
{{>userItem}}
2014-12-09 08:22:09 +08:00
</div>
2015-02-10 23:17:26 +08:00
{{/each}}
</div>
</div>
</div>
</template>