11 lines
406 B
Plaintext
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 %>
|