scinote-web/app/views/shareable_links/_user_my_modules.html.erb
Soufiane 33bb79d17a
Implement details and notes sections of shareable links [SCI-8750] (#5710)
Co-authored-by: Sboursen <dev.sboursen@gmail.com>
2023-07-06 15:10:26 +02:00

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>