<%= text_field_tag('contact[company]', '') %>
<%= javascript_tag "observeAutocompleteField('contact_company', '#{escape_javascript auto_complete_companies_path(:project_id => @project)}')" %>
<% @custom_fields.each do |custom_field| %>
<%= custom_field_tag_for_bulk_edit('contact', custom_field, @projects) %>
<% end %>
<%= select_tag('contact[assigned_to_id]', content_tag('option', l(:label_no_change_option), :value => '') +
content_tag('option', l(:label_nobody), :value => 'none') +
options_from_collection_for_select(@assignables, :id, :name)) %>
<%= select_tag 'contact[visibility]', options_for_select(collection_for_visibility_select) %>
<%= text_field_tag('contact[job_title]', '') %>
<%= text_field_tag 'contact[address_attributes][city]' -%>
<%= text_field_tag 'contact[address_attributes][region]' -%>
<%= select_tag 'contact[address_attributes][country_code]', options_for_select(l(:label_crm_countries).map{|k, v| [v, k]}), :include_blank => true -%>