<%=l(:label_issue_new)%>

<%= call_hook(:view_issues_new_top, {:issue => @issue}) %> <%= labelled_form_for @issue, :url => project_issues_path(@project), :html => {:id => 'issue-form', :multipart => true} do |f| %> <%= error_messages_for 'issue' %> <%= hidden_field_tag 'copy_from', params[:copy_from] if params[:copy_from] %>
<%= render :partial => 'issues/form', :locals => {:f => f} %>
<% if @copy_from && @copy_from.attachments.any? %>

<%= check_box_tag 'copy_attachments', '1', @copy_attachments %>

<% end %>

<%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= render :partial => 'attachments/form', :locals => {:container => @issue} %>

<% if @issue.safe_attribute? 'watcher_user_ids' -%>

<%= watchers_checkboxes(@issue, @available_watchers) %> <%= link_to_remote l(:label_search_for_watchers), :url => {:controller => 'watchers', :action => 'new', :project_id => @issue.project}, :method => 'get' %>

<% end %>
<%= submit_tag l(:button_create) %> <%= submit_tag l(:button_create_and_continue), :name => 'continue' %> <%= link_to_remote l(:label_preview), { :url => preview_new_issue_path(:project_id => @project), :method => 'post', :update => 'preview', :with => "Form.serialize('issue-form')", :complete => "Element.scrollTo('preview')" }, :accesskey => accesskey(:preview) %> <%= javascript_tag "Form.Element.focus('issue_subject');" %> <% end %>
<% content_for :header_tags do %> <%= stylesheet_link_tag 'scm' %> <%= robot_exclusion_tag %> <% end %>