<%= _("%s's favorite enterprises") % profile.name %>
<% @favorite_enterprises.each do |enterprise| %>
-
<%= link_to_profile profile_image(enterprise) + '
'.html_safe + enterprise.name,
enterprise.identifier, :class => 'profile-link' %>
<%# profile_image_link enterprise, :portrait, 'div' %>
<%= button_without_text(:delete, _('remove'), { :action => 'remove', :id => enterprise.id },: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 %>