##// END OF EJS Templates
Fixed: improper 0x5c char handling in PDF output (Go Maeda)....
Fixed: improper 0x5c char handling in PDF output (Go Maeda). git-svn-id: http://redmine.rubyforge.org/svn/trunk@813 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r676:1281d99f3057
r802:bb724e75c0a9
Show More
move_issues.rhtml
24 lines | 852 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30 <h2><%=l(:button_move)%></h2>
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% form_tag({:action => 'move_issues', :id => @project}, :class => "tabular") do %>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30
<div class="box">
Jean-Philippe Lang
Added the ability to move issues (to another project) without changing their trackers....
r676 <p><label><%= l(:label_issue_plural) %> :</label>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30 <% for issue in @issues %>
Jean-Philippe Lang
Issue#long_id no more used and removed...
r507 <%= link_to_issue issue %>: <%=h issue.subject %>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30 <%= hidden_field_tag "issue_ids[]", issue.id %><br />
<% end %>
<i>(<%= @issues.length%> <%= lwr(:label_issue, @issues.length)%>)</i></p>
&nbsp;
<!--[form:issue]-->
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
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30 <%= select_tag "new_project_id", options_from_collection_for_select(@projects, "id", "name", @project.id) %></p>
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>
<%= select_tag "new_tracker_id", '<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>
<%= submit_tag l(:button_move) %>
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% end %>