<% @organization.sponsorships.live.find_each do |sponsorship| %>
<%= t("views.organizations.sponsor.text", level: t("views.organizations.sponsor.level.#{sponsorship.level}")) %>
<% end %> <%# given the probability that organizations can have lots of users, here we're using the any?/find_each pattern to avoid loading possibly too many objects in memory %> <% if @organization.users.any? %>

<%= t("views.organizations.team") %>

<% @organization.users.find_each do |user| %>
<%= user.username %> profile image
<% end %>
<% end %>