scinote-web/app/views/user_my_modules/_index_old.html.erb

27 lines
932 B
Plaintext
Raw Normal View History

<h5 class="designated-users-task-title"><%=t "experiments.canvas.popups.users_tab" %></h5>
2020-04-14 23:25:36 +08:00
<hr>
<ul class="no-style content-users">
<% if @user_my_modules.size == 0 then %>
<li><em><%= t "experiments.canvas.popups.no_users" %></em></li>
<% else %>
<% @user_my_modules.each_with_index do |user_my_module, i| %>
<% user = user_my_module.user %>
<li>
<% if i > 0 %><hr><% end %>
<div class="row">
<div class="col-xs-2">
<span class='global-avatar-container'>
<%= image_tag avatar_path(user, :icon_small), class: "img-circle pull-left" %>
</span>
2020-04-14 23:25:36 +08:00
</div>
<div class="col-xs-10" style="line-height: 15px">
<span><%= user.full_name %></span><br>
<span class="user-role"><%= @my_module.role_for_user(user).name %></span>
2020-04-14 23:25:36 +08:00
</div>
</div>
</li>
<% end %>
<% end %>
</ul>
<% end %>