following.html.erb
700 Bytes
<div class="common-profile-list-block">
<h1><%= _("%s is following") % profile.name %></h1>
<% cache_timeout(profile.friends_cache_key(params), 4.hours) do %>
<ul class='profile-list'>
<% @followed_people.each do |followed_person| %>
<%= profile_image_link(followed_person) %>
<% end%>
</ul>
<div id='pagination-profiles'>
<%= pagination_links @followed_people, :param_name => 'npage' %>
</div>
<% end %>
<%= button_bar do %>
<%= button :back, _('Go back'), { :controller => 'profile' } %>
<% if user == profile %>
<%= button :edit, _('Manage followed people'), :controller => 'friends', :action => 'index', :profile => profile.identifier %>
<% end %>
<% end %>
</div>