<% site_followings = site.followings_dataset.count %> <% if (!is_current_site && site_followings > 0) || is_current_site %>

<%= is_current_site ? 'Sites you follow' : 'This site follows' %>

<% if site_followings == 0 %>

You are not following any sites yet. Add some by browsing sites or looking at your tags. <% else %> <% site.followings_dataset.select(:site_id).all.each do |following| %> <% end %> <% end %>

<% end %> <% site_follows = site.follows_dataset.count %> <% if (!is_current_site && site_follows > 0) || is_current_site %>

Followers

<% if site_follows == 0 %> No followers yet. <% else %> <% site_profile_follows_actioning_ids = site.profile_follows_actioning_ids %> <% site_profile_follows_actioning_ids[0...Site::MAX_DISPLAY_FOLLOWS].each do |follow| %> <% follow_actioning_site = follow.actioning_site_dataset.select(:username).first %> <% end %> <% if Site::MAX_DISPLAY_FOLLOWS < site_profile_follows_actioning_ids.count %> see more <% end %> <% end %>
<% end %>