diff .svn/pristine/ad/ada6049cb9e3f42d297d010fa449795702a9f12a.svn-base @ 1295:622f24f53b42 redmine-2.3

Update to Redmine SVN revision 11972 on 2.3-stable branch
author Chris Cannam
date Fri, 14 Jun 2013 09:02:21 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.svn/pristine/ad/ada6049cb9e3f42d297d010fa449795702a9f12a.svn-base	Fri Jun 14 09:02:21 2013 +0100
@@ -0,0 +1,55 @@
+<h2><%=l(:label_issue_new)%></h2>
+
+<%= 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] %>
+  <div class="box tabular">
+    <div id="all_attributes">
+    <%= render :partial => 'issues/form', :locals => {:f => f} %>
+    </div>
+
+    <% if @copy_from && @copy_from.attachments.any? %>
+    <p>
+      <label for="copy_attachments"><%= l(:label_copy_attachments) %></label>
+      <%= check_box_tag 'copy_attachments', '1', @copy_attachments %>
+    </p>
+    <% end %>
+    <% if @copy_from && !@copy_from.leaf? %>
+    <p>
+      <label for="copy_subtasks"><%= l(:label_copy_subtasks) %></label>
+      <%= check_box_tag 'copy_subtasks', '1', @copy_subtasks %>
+    </p>
+    <% end %>
+
+    <p id="attachments_form"><label><%= l(:label_attachment_plural) %></label><%= render :partial => 'attachments/form', :locals => {:container => @issue} %></p>
+
+    <% if @issue.safe_attribute? 'watcher_user_ids' -%>
+      <p id="watchers_form"><label><%= l(:label_issue_watchers) %></label>
+      <span id="watchers_inputs">
+        <%= watchers_checkboxes(@issue, @available_watchers) %>
+      </span>
+      <span class="search_for_watchers">
+      <%= link_to l(:label_search_for_watchers),
+                  {:controller => 'watchers', :action => 'new', :project_id => @issue.project},
+                  :remote => true,
+                  :method => 'get' %>
+      </span>
+      </p>
+    <% end %>
+  </div>
+
+  <%= submit_tag l(:button_create) %>
+  <%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
+  <%= preview_link preview_new_issue_path(:project_id => @project), 'issue-form' %>
+
+  <%= javascript_tag "$('#issue_subject').focus();" %>
+<% end %>
+
+<div id="preview" class="wiki"></div>
+
+<% content_for :header_tags do %>
+    <%= robot_exclusion_tag %>
+<% end %>