profile_list.html.erb 351 Bytes
<%= block_title(block.view_title, block.subtitle) %>

<%
  list = block.profile_list.map do |item|
    profile_image_link(item, :minor)
  end.join("\n ")
%>

<div>
  <% if list.empty? %>
    <div class='common-profile-list-block-none'><%= _('None') %></div>
  <% else %>
    <ul><%= list.html_safe %></ul>
  <% end %>
</div>

<br style='clear:both'/>