You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_attributes.html.erb 3.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <%= labelled_fields_for :issue, @issue do |f| %>
  2. <div class="splitcontent">
  3. <div class="splitcontentleft">
  4. <% if @issue.safe_attribute? 'status_id' %>
  5. <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
  6. <% else %>
  7. <p><label><%= l(:field_status) %></label> <%= h(@issue.status.name) %></p>
  8. <% end %>
  9. <% if @issue.safe_attribute? 'priority_id' %>
  10. <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), {:required => true}, :disabled => !@issue.leaf? %></p>
  11. <% end %>
  12. <% if @issue.safe_attribute? 'assigned_to_id' %>
  13. <p><%= f.select :assigned_to_id, principals_options_for_select(@issue.assignable_users, @issue.assigned_to), :include_blank => true %></p>
  14. <% end %>
  15. <% if @issue.safe_attribute?('category_id') && @issue.project.issue_categories.any? %>
  16. <p><%= f.select :category_id, (@issue.project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
  17. <%= prompt_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'),
  18. l(:label_issue_category_new),
  19. 'issue_category[name]',
  20. {:controller => 'issue_categories', :action => 'create', :project_id => @issue.project},
  21. :title => l(:label_issue_category_new),
  22. :tabindex => 199) if User.current.allowed_to?(:manage_categories, @issue.project) %></p>
  23. <% end %>
  24. <% if @issue.safe_attribute?('fixed_version_id') && @issue.assignable_versions.any? %>
  25. <p><%= f.select :fixed_version_id, version_options_for_select(@issue.assignable_versions, @issue.fixed_version), :include_blank => true %>
  26. <%= link_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'),
  27. {:url => new_project_version_path(@issue.project), :method => 'get'},
  28. :title => l(:label_version_new),
  29. :tabindex => 200) if User.current.allowed_to?(:manage_versions, @issue.project) %>
  30. </p>
  31. <% end %>
  32. </div>
  33. <div class="splitcontentright">
  34. <% if @issue.safe_attribute? 'parent_issue_id' %>
  35. <p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10 %></p>
  36. <div id="parent_issue_candidates" class="autocomplete"></div>
  37. <%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:id => @issue, :project_id => @issue.project) }')" %>
  38. <% end %>
  39. <% if @issue.safe_attribute? 'start_date' %>
  40. <p><%= f.text_field :start_date, :size => 10, :disabled => !@issue.leaf? %><%= calendar_for('issue_start_date') if @issue.leaf? %></p>
  41. <% end %>
  42. <% if @issue.safe_attribute? 'due_date' %>
  43. <p><%= f.text_field :due_date, :size => 10, :disabled => !@issue.leaf? %><%= calendar_for('issue_due_date') if @issue.leaf? %></p>
  44. <% end %>
  45. <% if @issue.safe_attribute? 'estimated_hours' %>
  46. <p><%= f.text_field :estimated_hours, :size => 3, :disabled => !@issue.leaf? %> <%= l(:field_hours) %></p>
  47. <% end %>
  48. <% if @issue.safe_attribute?('done_ratio') && @issue.leaf? && Issue.use_field_for_done_ratio? %>
  49. <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
  50. <% end %>
  51. </div>
  52. </div>
  53. <% if @issue.safe_attribute? 'custom_field_values' %>
  54. <%= render :partial => 'issues/form_custom_fields' %>
  55. <% end %>
  56. <% end %>