move_issues.rhtml
24 lines
| 852 B
| text/html+ruby
|
RhtmlLexer
|
r30 | <h2><%=l(:button_move)%></h2> | ||
|
r181 | <% form_tag({:action => 'move_issues', :id => @project}, :class => "tabular") do %> | ||
|
r30 | |||
<div class="box"> | ||||
|
r676 | <p><label><%= l(:label_issue_plural) %> :</label> | ||
|
r30 | <% for issue in @issues %> | ||
|
r507 | <%= link_to_issue issue %>: <%=h issue.subject %> | ||
|
r30 | <%= hidden_field_tag "issue_ids[]", issue.id %><br /> | ||
<% end %> | ||||
<i>(<%= @issues.length%> <%= lwr(:label_issue, @issues.length)%>)</i></p> | ||||
| ||||
<!--[form:issue]--> | ||||
|
r676 | <p><label for="new_project_id"><%=l(:field_project)%> :</label> | ||
|
r30 | <%= select_tag "new_project_id", options_from_collection_for_select(@projects, "id", "name", @project.id) %></p> | ||
|
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> | ||||
|
r30 | </div> | ||
<%= submit_tag l(:button_move) %> | ||||
|
r181 | <% end %> | ||