_attributes.html.erb
67 lines
| 3.1 KiB
| text/plain
|
TextLexer
|
r8022 | <% labelled_fields_for :issue, @issue do |f| %> | ||
|
r2994 | |||
<div class="splitcontentleft"> | ||||
|
r8107 | <% if @issue.safe_attribute? 'status_id' %> | ||
|
r2994 | <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p> | ||
<% else %> | ||||
|
r6249 | <p><label><%= l(:field_status) %></label> <%= h(@issue.status.name) %></p> | ||
|
r2994 | <% end %> | ||
|
r8107 | <% if @issue.safe_attribute? 'priority_id' %> | ||
|
r3459 | <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), {:required => true}, :disabled => !@issue.leaf? %></p> | ||
|
r8107 | <% end %> | ||
<% if @issue.safe_attribute? 'assigned_to_id' %> | ||||
|
r6187 | <p><%= f.select :assigned_to_id, principals_options_for_select(@issue.assignable_users, @issue.assigned_to), :include_blank => true %></p> | ||
|
r8107 | <% end %> | ||
|
r8411 | <% if @issue.safe_attribute?('category_id') && @issue.project.issue_categories.any? %> | ||
<p><%= f.select :category_id, (@issue.project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %> | ||||
|
r3002 | <%= prompt_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'), | ||
l(:label_issue_category_new), | ||||
|
r7976 | 'issue_category[name]', | ||
|
r8411 | {:controller => 'issue_categories', :action => 'create', :project_id => @issue.project}, | ||
|
r7193 | :title => l(:label_issue_category_new), | ||
|
r8411 | :tabindex => 199) if User.current.allowed_to?(:manage_categories, @issue.project) %></p> | ||
|
r2994 | <% end %> | ||
|
r8107 | |||
<% if @issue.safe_attribute?('fixed_version_id') && @issue.assignable_versions.any? %> | ||||
|
r3012 | <p><%= f.select :fixed_version_id, version_options_for_select(@issue.assignable_versions, @issue.fixed_version), :include_blank => true %> | ||
|
r8725 | <%= link_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'), | ||
{:url => new_project_version_path(@issue.project), :method => 'get'}, | ||||
:title => l(:label_version_new), | ||||
:tabindex => 200) if User.current.allowed_to?(:manage_versions, @issue.project) %> | ||||
|
r3012 | </p> | ||
|
r2994 | <% end %> | ||
</div> | ||||
<div class="splitcontentright"> | ||||
|
r8080 | <% if @issue.safe_attribute? 'parent_issue_id' %> | ||
|
r5298 | <p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10 %></p> | ||
<div id="parent_issue_candidates" class="autocomplete"></div> | ||||
|
r8411 | <%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:id => @issue, :project_id => @issue.project) }')" %> | ||
|
r5298 | <% end %> | ||
|
r8107 | |||
<% if @issue.safe_attribute? 'start_date' %> | ||||
|
r3459 | <p><%= f.text_field :start_date, :size => 10, :disabled => !@issue.leaf? %><%= calendar_for('issue_start_date') if @issue.leaf? %></p> | ||
|
r8107 | <% end %> | ||
<% if @issue.safe_attribute? 'due_date' %> | ||||
|
r3459 | <p><%= f.text_field :due_date, :size => 10, :disabled => !@issue.leaf? %><%= calendar_for('issue_due_date') if @issue.leaf? %></p> | ||
|
r8107 | <% end %> | ||
<% if @issue.safe_attribute? 'estimated_hours' %> | ||||
|
r3459 | <p><%= f.text_field :estimated_hours, :size => 3, :disabled => !@issue.leaf? %> <%= l(:field_hours) %></p> | ||
|
r8107 | <% end %> | ||
<% if @issue.safe_attribute?('done_ratio') && @issue.leaf? && Issue.use_field_for_done_ratio? %> | ||||
|
r2994 | <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p> | ||
|
r3037 | <% end %> | ||
|
r2994 | </div> | ||
<div style="clear:both;"> </div> | ||||
|
r8107 | <% if @issue.safe_attribute? 'custom_field_values' %> | ||
|
r3975 | <%= render :partial => 'issues/form_custom_fields' %> | ||
|
r8107 | <% end %> | ||
|
r2994 | |||
<% end %> | ||||