change_status.rhtml
37 lines
| 1.3 KiB
| text/html+ruby
|
RhtmlLexer
|
r96 | <h2><%=l(:label_issue)%> #<%= @issue.id %>: <%=h @issue.subject %></h2> | ||
|
r2 | |||
|
r52 | <%= error_messages_for 'issue' %> | ||
|
r181 | <% form_tag({:action => 'change_status', :id => @issue}, :class => "tabular") do %> | ||
|
r2 | |||
<%= hidden_field_tag 'confirm', 1 %> | ||||
|
r52 | <%= hidden_field_tag 'new_status_id', @new_status.id %> | ||
|
r10 | |||
<div class="box"> | ||||
|
r52 | <p><label><%=l(:label_issue_status_new)%></label> <%= @new_status.name %></p> | ||
|
r2 | |||
|
r19 | <p><label for="issue_assigned_to_id"><%=l(:field_assigned_to)%></label> | ||
|
r2 | <select name="issue[assigned_to_id]"> | ||
<option value=""></option> | ||||
<%= options_from_collection_for_select @assignable_to, "id", "display_name", @issue.assigned_to_id %></p> | ||||
</select></p> | ||||
|
r42 | |||
<p><label for="issue_done_ratio"><%=l(:field_done_ratio)%></label> | ||||
<%= select("issue", "done_ratio", ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) ) %> | ||||
</select></p> | ||||
|
r2 | |||
|
r19 | <p><label for="issue_fixed_version"><%=l(:field_fixed_version)%></label> | ||
|
r2 | <select name="issue[fixed_version_id]"> | ||
<option value="">--none--</option> | ||||
<%= options_from_collection_for_select @issue.project.versions, "id", "name", @issue.fixed_version_id %> | ||||
|
r52 | </select></p> | ||
|
r21 | |||
|
r52 | <p><label for="notes"><%= l(:field_notes) %></label> | ||
<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10 %></p> | ||||
</div> | ||||
|
r21 | <%= hidden_field 'issue', 'lock_version' %> | ||
|
r12 | <%= submit_tag l(:button_save) %> | ||
|
r181 | <% end %> | ||