<%= breadcrumb link_to(@note.source.name, note_source_url(@note.source)) %> <%= render :partial => 'note_header', :object => @note %>
<% form_for :note, @note, :url => {:controller => "notes", :action => 'create', :project_id => @project, :id => @note}, :html => { :multipart => true} do |f| %>

<%= f.select :type_id, collection_for_note_types_select, { :include_blank => true } %>

<%= f.text_field :created_on, :size => 15 %><%= calendar_for "note_created_on" %>
<% @note.custom_field_values.each do |value| %>

<%= custom_field_tag_with_label :note, value %>

<% end -%>

<%= f.text_area :content , :cols => 80, :rows => 8, :class => 'wiki-edit', :label=>l(:field_contact_background) %> <%= wikitoolbar_for 'note_content' %>

<%= link_to_attachments @note, :author => false %>


<%= file_field_tag 'note_attachments[1][file]', :size => 30, :id => nil %> <%= text_field_tag 'attachments[1][description]', '', :size => 60, :id => nil %>
<%= link_to l(:label_add_another_file), '#', :onclick => 'addNoteFileField(); return false;' %> (<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)

<%= submit_tag l(:button_save) -%> <% end -%>
<% html_title "#{l(:label_crm_note_for)} #{@note.source.name}" %> <% content_for :sidebar do %> <%= render :partial => 'common/sidebar' %> <%= render :partial => 'common/recently_viewed' %> <% end %> <% content_for :header_tags do %> <%= javascript_include_tag :contacts, :plugin => 'redmine_contacts' %> <%= stylesheet_link_tag :contacts, :plugin => 'redmine_contacts' %> <%= stylesheet_link_tag :contacts_sidebar, :plugin => 'redmine_contacts' %> <% end %>