<%= _("%s's friends") % profile.name %>
<% @friends.each do |friend| %>
-
<%= profile_image_link friend %>
<%= link_to content_tag('span',_('remove')),
{ :action => 'remove', :id => friend.id },
:class => 'button icon-delete',
:title => _('remove'),
:help => _('Clicking on this button will remove your friend relation with %s.') % friend.name %>
<% end %>
<% if @friends.empty? %>
<%= _('You have no friends yet. Go make some.') %>
<% end %>
<% button_bar do %>
<%= button(:back, _('Go back'), :controller => 'profile_editor') %>
<% end %>