friends.rhtml 499 Bytes
<div class="common-profile-list-block"
     help="<%= _('Here are all <b>%s</b>\'s friends.') % profile.name %>">

<h1><%= _("%s' friends") % profile.name %></h1>

<ul class='profile-list'>
  <% @friends.each do |friend| %>
    <li><%= profile_image_link(friend) %></li>
  <% end%>
</ul>

<% button_bar do %>
  <%= button :back, _('Go back'), { :controller => 'profile' },
      :help => _('Back to the page where you come from.') %>
<% end %>

</div><!-- fim class="common-profile-list-block" -->