|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
<%= labelled_fields_for :issue, @issue do |f| %>
|
|
|
|
|
|
|
|
|
|
<div class="splitcontent">
|
|
|
|
|
<fieldset class="collapsible collapsed" style="padding-left: 50px;">
|
|
|
|
|
<legend onclick="toggleFieldset(this);" style="font-size:12px;"><strong><%= l(:label_change_properties) %></strong></legend>
|
|
|
|
|
<div class="splitcontent" style="display: none;">
|
|
|
|
|
<div class="splitcontentleft">
|
|
|
|
|
<% if @issue.safe_attribute?('status_id') && @allowed_statuses.present? %>
|
|
|
|
|
<p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), {:required => true},
|
|
|
|
@ -18,15 +20,6 @@
|
|
|
|
|
<p><%= f.select :assigned_to_id, principals_options_for_select(@issue.assignable_users, @issue.assigned_to), :include_blank => true, :required => @issue.required_attribute?('assigned_to_id') %></p>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% 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, :required => @issue.required_attribute?('category_id') %>
|
|
|
|
|
<%= link_to(image_tag('add.png', :style => 'vertical-align: middle;'),
|
|
|
|
|
new_project_issue_category_path(@issue.project),
|
|
|
|
|
:remote => true,
|
|
|
|
|
:method => 'get',
|
|
|
|
|
:title => l(:label_issue_category_new),
|
|
|
|
|
:tabindex => 200) if User.current.allowed_to?(:manage_categories, @issue.project) %></p>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% if @issue.safe_attribute?('fixed_version_id') && @issue.assignable_versions.any? %>
|
|
|
|
|
<p><%= f.select :fixed_version_id, version_options_for_select(@issue.assignable_versions, @issue.fixed_version), :include_blank => true, :required => @issue.required_attribute?('fixed_version_id') %>
|
|
|
|
@ -41,10 +34,6 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="splitcontentright">
|
|
|
|
|
<% if @issue.safe_attribute? 'parent_issue_id' %>
|
|
|
|
|
<p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10, :required => @issue.required_attribute?('parent_issue_id') %></p>
|
|
|
|
|
<%= javascript_tag "observeAutocompleteField('issue_parent_issue_id', '#{escape_javascript auto_complete_issues_path}')" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% if @issue.safe_attribute? 'start_date' %>
|
|
|
|
|
<p><%= f.text_field :start_date, :size => 10, :disabled => !@issue.leaf?, :required => @issue.required_attribute?('start_date') %><%= calendar_for('issue_start_date') if @issue.leaf? %></p>
|
|
|
|
@ -63,6 +52,7 @@
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
<% if @issue.safe_attribute? 'custom_field_values' %>
|
|
|
|
|
<%= render :partial => 'issues/form_custom_fields' %>
|
|
|
|
|