QA chat info popovers
This commit is contained in:
parent
8b09d2f97b
commit
89078feca4
2 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,4 @@
|
|||
<hr>
|
||||
<% if _.isEmpty(@chat_sessions): %>
|
||||
<%- @T('none') %>
|
||||
<% else: %>
|
||||
|
|
|
@ -1,9 +1,15 @@
|
|||
<hr>
|
||||
<% if _.isEmpty(@users): %>
|
||||
<%- @T('none') %>
|
||||
<% else: %>
|
||||
<ul>
|
||||
<div class="userList">
|
||||
<% for user in @users: %>
|
||||
<li><%= user.displayName() %>
|
||||
<div class="userList-entry">
|
||||
<%- user.avatar("30") %>
|
||||
<span class="userList-name">
|
||||
<%= user.displayName() %>
|
||||
</span>
|
||||
</div>
|
||||
<% end %>
|
||||
</ul>
|
||||
</div>
|
||||
<% end %>
|
Loading…
Reference in a new issue