This repository has been archived on 2024-12-01. You can view files and clone it, but cannot push or open issues or pull requests.
redmine_rodax_crm/app/views/contacts/_employees.html.erb
2012-01-03 16:18:32 +00:00

11 lines
406 B
Plaintext

<% if @contact.is_company %>
<div id="employee">
<div class="contextual">
<%= link_to_if_authorized l(:label_add_employee), {:controller => 'contacts', :action => 'new', :project_id => @project, :contact => {:company => @contact.name}} %>
</div>
<h3><%= l(:label_company_employees) %></h3>
<%= render :partial => 'common/contact_data', :collection => @contact.employees %>
</div>
<% end %>