##// END OF EJS Templates
Added wiki annotate view. It's accessible for each version from the page history view. ...
Added wiki annotate view. It's accessible for each version from the page history view. Slight style change: pre-wrap added on file/diff contents. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1020 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r907:8d91afc33e3b
r1007:31c6ebb31046
Show More
move_issues.rhtml
29 lines | 1.2 KiB | 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
Added per-project tracker selection. Trackers can be selected on project settings....
r907 <% form_tag({:action => 'move_issues', :id => @project}, :class => 'tabular', :id => 'move_form') 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
Added per-project tracker selection. Trackers can be selected on project settings....
r907 <%= 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>
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>
<%= submit_tag l(:button_move) %>
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% end %>