mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 14:46:00 +08:00
33bb79d17a
Co-authored-by: Sboursen <dev.sboursen@gmail.com>
9 lines
435 B
Text
9 lines
435 B
Text
<div class="inline-flex flex-row flex-nowrap">
|
|
<% my_module.user_my_modules.each do |um| %>
|
|
<% user = um.user %>
|
|
<div class="inline-flex gap-2 flex-nowrap h-6 px-2 py-1 items-center select-none" title="<%= user.full_name %>">
|
|
<img class="block rounded-full h-5" src="<%= avatar_path(user, :icon_small)%>" alt="<%= user.full_name %>">
|
|
<span style="block"><%= user.full_name %></span>
|
|
</div>
|
|
<% end %>
|
|
</div>
|