<%= title 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 && Setting.link_copied_issue == 'ask' %>

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

<% end %> <% if @copy_from && @copy_from.attachments.any? %>

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

<% end %> <% if @copy_from && !@copy_from.leaf? %>

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

<% end %>

<%= render :partial => 'attachments/form', :locals => {:container => @issue} %>

<%= render :partial => 'issues/watchers_form' %>
<%= submit_tag l(:button_create) %> <% if params[:back_url] && params[:issue] && params[:issue][:parent_issue_id] %> <%= submit_tag l(:button_create_and_follow), name: 'follow' %> <% end %> <%= submit_tag l(:button_create_and_continue), :name => 'continue' %> <% end %> <% content_for :header_tags do %> <%= robot_exclusion_tag %> <% end %>