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): %>
|
<% if _.isEmpty(@chat_sessions): %>
|
||||||
<%- @T('none') %>
|
<%- @T('none') %>
|
||||||
<% else: %>
|
<% else: %>
|
||||||
|
|
|
@ -1,9 +1,15 @@
|
||||||
|
<hr>
|
||||||
<% if _.isEmpty(@users): %>
|
<% if _.isEmpty(@users): %>
|
||||||
<%- @T('none') %>
|
<%- @T('none') %>
|
||||||
<% else: %>
|
<% else: %>
|
||||||
<ul>
|
<div class="userList">
|
||||||
<% for user in @users: %>
|
<% for user in @users: %>
|
||||||
<li><%= user.displayName() %>
|
<div class="userList-entry">
|
||||||
|
<%- user.avatar("30") %>
|
||||||
|
<span class="userList-name">
|
||||||
|
<%= user.displayName() %>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
Loading…
Reference in a new issue