##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1120:5152771fdd59
r1770:8f3a04ce6906
Show More
move.rhtml
22 lines | 1.1 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
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....
r1116 <h2><%= l(:button_move) %></h2>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30
Jean-Philippe Lang
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....
r1116 <ul><%= @issues.collect {|i| content_tag('li', link_to(h("#{i.tracker} ##{i.id}"), { :action => 'show', :id => i }) + h(": #{i.subject}")) }.join("\n") %></ul>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30
Jean-Philippe Lang
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....
r1116 <% form_tag({}, :id => 'move_form') do %>
<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join %>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30
Jean-Philippe Lang
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....
r1116 <div class="box tabular">
Jean-Philippe Lang
Added the ability to move issues (to another project) without changing their trackers....
r676 <p><label for="new_project_id"><%=l(:field_project)%> :</label>
Jean-Philippe Lang
Added per-project tracker selection. Trackers can be selected on project settings....
r907 <%= select_tag "new_project_id",
Jean-Philippe Lang
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....
r1116 options_from_collection_for_select(@allowed_projects, 'id', 'name', @target_project.id),
Jean-Philippe Lang
Fixed: 404 error when selecting an other project on issues/move....
r1120 :onchange => remote_function(:url => { :action => 'move' },
Jean-Philippe Lang
Added per-project tracker selection. Trackers can be selected on project settings....
r907 :method => :get,
:update => 'content',
:with => "Form.serialize('move_form')") %></p>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30
Jean-Philippe Lang
Added the ability to move issues (to another project) without changing their trackers....
r676 <p><label for="new_tracker_id"><%=l(:field_tracker)%> :</label>
Jean-Philippe Lang
Fixed: admin should be able to move issues to any project....
r890 <%= select_tag "new_tracker_id", "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@trackers, "id", "name") %></p>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30 </div>
Jean-Philippe Lang
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....
r1116
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30 <%= submit_tag l(:button_move) %>
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% end %>