enterprise.rhtml
654 Bytes
<ul>
<%if logged_in? %>
<%if !user.favorite_enterprises.include?(profile) %>
<li><%= link_to content_tag('span', _('Add as favorite')), { :profile => user.identifier, :controller => 'favorite_enterprises', :action => 'add', :id => profile.id }, :class => 'button with-text icon-add', :title => __('Add enterprise as favorite') %></li>
<% end %>
<% end %>
<% if profile.enable_contact? %>
<li> <%= link_to content_tag('span', _('Contact us')), {:profile => profile.identifier, :controller => 'contact', :action => 'new'}, {:id => 'enterprise-contact-button', :class => 'button with-text icon-menu-mail'} %> </li>
<% end %>
</ul>