<%= __("%s's favorite enterprises") % profile.name %>
<% @favorite_enterprises.each do |enterprise| %>
-
<%= link_to_profile profile_image(enterprise) + '
' + enterprise.name,
enterprise.identifier, :class => 'profile-link' %>
<%# profile_image_link enterprise, :portrait, 'div' %>
<%= link_to content_tag('span',_('remove')),
{ :action => 'remove', :id => enterprise.id },
:class => 'button icon-delete',
:title => _('remove') %>
<% end %>
<% if @favorite_enterprises.empty? %>
<%= __('You have no favorite enterprises yet.') %>
<% end %>
<% button_bar do %>
<%= button(:back, _('Go back'), :controller => 'profile_editor') %>
<% end %>