change_status.rhtml
40 lines
| 1.9 KiB
| text/html+ruby
|
RhtmlLexer
|
r96 | <h2><%=l(:label_issue)%> #<%= @issue.id %>: <%=h @issue.subject %></h2> | ||
|
r330 | |||
<%= error_messages_for 'issue' %> | ||||
|
r423 | <% labelled_tabular_form_for(:issue, @issue, :url => {:action => 'change_status', :id => @issue}, :html => {:multipart => true}) do |f| %> | ||
|
r330 | |||
<%= hidden_field_tag 'confirm', 1 %> | ||||
|
r52 | <%= hidden_field_tag 'new_status_id', @new_status.id %> | ||
|
r423 | <%= f.hidden_field :lock_version %> | ||
|
r10 | |||
|
r330 | <div class="box"> | ||
|
r583 | <div class="splitcontentleft"> | ||
|
r330 | <p><label><%=l(:label_issue_status_new)%></label> <%= @new_status.name %></p> | ||
|
r643 | <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p> | ||
|
r423 | <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p> | ||
|
r613 | <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p> | ||
|
r583 | </div> | ||
<div class="splitcontentright"> | ||||
<% if authorize_for('timelog', 'edit') %> | ||||
<% fields_for :time_entry, @time_entry, { :builder => TabularFormBuilder, :lang => current_language} do |time_entry| %> | ||||
<p><%= time_entry.text_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %></p> | ||||
<p><%= time_entry.text_field :comments, :size => 40 %></p> | ||||
<p><%= time_entry.select :activity_id, (@activities.collect {|p| [p.name, p.id]}) %></p> | ||||
<% end %> | ||||
<% end %> | ||||
</div> | ||||
<div class="clear"></div> | ||||
|
r21 | |||
|
r52 | <p><label for="notes"><%= l(:field_notes) %></label> | ||
|
r326 | <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %></p> | ||
|
r52 | |||
|
r422 | <% if authorize_for('issues', 'add_attachment') %> | ||
<p id="attachments_p"><label><%=l(:label_attachment_new)%> | ||||
<%= image_to_function "add.png", "addFileField();return false" %></label> | ||||
<%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p> | ||||
<% end %> | ||||
|
r52 | </div> | ||
|
r330 | |||
<%= submit_tag l(:button_save) %> | ||||
<% end %> | ||||