summaryrefslogtreecommitdiffstats
path: root/app/views/projects
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-02-10 13:17:41 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-02-10 13:17:41 +0000
commit4155c97222cea69406060979efca3ebaaed9dcec (patch)
tree17bc056c97c1af47914bb2599995d2901749ce35 /app/views/projects
parent43a6f312edde2399c9c986ed61b1e9b0e1066db6 (diff)
downloadredmine-4155c97222cea69406060979efca3ebaaed9dcec.tar.gz
redmine-4155c97222cea69406060979efca3ebaaed9dcec.zip
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once.
There are 2 ways to select a set of issues on the issue list: * by using checkbox and/or the little pencil that will select/unselect all issues (#567) * by clicking on the rows (but not on the links), Ctrl and Shift keys can be used to select multiple issues Context menu was disabled on links so that the default context menu of the browser is displayed when right-clicking on a link (#545). All this was tested with Firefox 2, IE 6/7, Opera 8 (use Alt+Click instead of Right-click) and Safari 2/3. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1130 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/move_issues.rhtml29
1 files changed, 0 insertions, 29 deletions
diff --git a/app/views/projects/move_issues.rhtml b/app/views/projects/move_issues.rhtml
deleted file mode 100644
index 95eaf9dec..000000000
--- a/app/views/projects/move_issues.rhtml
+++ /dev/null
@@ -1,29 +0,0 @@
-<h2><%=l(:button_move)%></h2>
-
-
-<% form_tag({:action => 'move_issues', :id => @project}, :class => 'tabular', :id => 'move_form') do %>
-
-<div class="box">
-<p><label><%= l(:label_issue_plural) %> :</label>
-<% for issue in @issues %>
- <%= link_to_issue issue %>: <%=h issue.subject %>
- <%= hidden_field_tag "issue_ids[]", issue.id %><br />
-<% end %>
-<i>(<%= @issues.length%> <%= lwr(:label_issue, @issues.length)%>)</i></p>
-
-&nbsp;
-
-<!--[form:issue]-->
-<p><label for="new_project_id"><%=l(:field_project)%> :</label>
-<%= select_tag "new_project_id",
- options_from_collection_for_select(@projects, 'id', 'name', @target_project.id),
- :onchange => remote_function(:url => {:action => 'move_issues' , :id => @project},
- :method => :get,
- :update => 'content',
- :with => "Form.serialize('move_form')") %></p>
-
-<p><label for="new_tracker_id"><%=l(:field_tracker)%> :</label>
-<%= select_tag "new_tracker_id", "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@trackers, "id", "name") %></p>
-</div>
-<%= submit_tag l(:button_move) %>
-<% end %>