|
|
|
@ -4,83 +4,96 @@
|
|
|
|
|
<legend onclick="toggleFieldset(this);" ><strong><%= l(:label_change_properties) %></strong></legend>
|
|
|
|
|
<ul class="fl" >
|
|
|
|
|
<li>
|
|
|
|
|
<label class="label"><span class="c_red f12">*</span><%= l(:field_status) %>:</label>
|
|
|
|
|
<% if @issue.safe_attribute?('status_id') && @allowed_statuses.present? %>
|
|
|
|
|
<%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}),
|
|
|
|
|
{ :onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')"}, :class => "w150" %>
|
|
|
|
|
<%= f.select :status_id,
|
|
|
|
|
(@allowed_statuses.collect {|p| [p.name, p.id]}),
|
|
|
|
|
{ :onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')" , :no_label => true},
|
|
|
|
|
:class => "w150" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<p><label><%= l(:field_status) %></label> <%= h(@issue.status.name) %></p>
|
|
|
|
|
<%= h(@issue.status.name) %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</li>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<li>
|
|
|
|
|
<label class="label" ><span class="c_red f12">*</span><%= l(:field_priority) %>:</label>
|
|
|
|
|
<% if @issue.safe_attribute? 'priority_id' %>
|
|
|
|
|
<%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), {:required => true}, :disabled => !@issue.leaf?, :class => "w150" %>
|
|
|
|
|
<%= f.select :priority_id,
|
|
|
|
|
(@priorities.collect {|p| [p.name, p.id]}),
|
|
|
|
|
{:required => true, :no_label => true}, :disabled => !@issue.leaf?,
|
|
|
|
|
:class => "w150" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</li>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<li><% if @issue.safe_attribute? 'assigned_to_id' %>
|
|
|
|
|
<li>
|
|
|
|
|
<li>
|
|
|
|
|
<label class="label" ><%= l(:field_assigned_to) %>:</label>
|
|
|
|
|
<% if @issue.safe_attribute? 'assigned_to_id' %>
|
|
|
|
|
<%= 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'),
|
|
|
|
|
:class => "w150" %>
|
|
|
|
|
{:required => @issue.required_attribute?('assigned_to_id'), :no_label => true} ,
|
|
|
|
|
:class => "w150" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</li>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<li><% if @issue.safe_attribute?('fixed_version_id') && @issue.assignable_versions.any? %>
|
|
|
|
|
<%= 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'),
|
|
|
|
|
:class => "w150" %>
|
|
|
|
|
<li>
|
|
|
|
|
<label class="label" ><%= l(:field_fixed_version) %>:</label>
|
|
|
|
|
<% if @issue.safe_attribute?('fixed_version_id') && @issue.assignable_versions.any? %>
|
|
|
|
|
<%= 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'), :no_label => true},
|
|
|
|
|
:class => "w150" %>
|
|
|
|
|
<%#= link_to(image_tag('add.png', :style => 'vertical-align: middle;'),
|
|
|
|
|
new_project_version_path(@issue.project),
|
|
|
|
|
:remote => true,
|
|
|
|
|
:method => 'get',
|
|
|
|
|
:title => l(:label_version_new),
|
|
|
|
|
:tabindex => 200) if User.current.allowed_to?(:manage_versions, @issue.project) %>
|
|
|
|
|
|
|
|
|
|
<a href="javascript:viod(0)" class="pic_add mt5 ml5" ></a>
|
|
|
|
|
<% end %>
|
|
|
|
|
</li>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
<ul class="fl ml90">
|
|
|
|
|
<li><% if @issue.safe_attribute? 'start_date' %>
|
|
|
|
|
<p><%= f.text_field :start_date, :size => 10, :disabled => !@issue.leaf?,
|
|
|
|
|
:class => "w150",
|
|
|
|
|
<li>
|
|
|
|
|
<label class="label02" ><%= l(:field_start_date) %>:</label>
|
|
|
|
|
<% if @issue.safe_attribute? 'start_date' %>
|
|
|
|
|
<%= f.text_field :start_date,
|
|
|
|
|
:size => 22,
|
|
|
|
|
:disabled => !@issue.leaf?,
|
|
|
|
|
:no_label=> true,
|
|
|
|
|
:required => @issue.required_attribute?('start_date') %>
|
|
|
|
|
<%= calendar_for('issue_start_date','start_date') if @issue.leaf? %></p>
|
|
|
|
|
<%= calendar_for('issue_start_date','start_date') if @issue.leaf? %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</li>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<li><% if @issue.safe_attribute? 'due_date' %>
|
|
|
|
|
<p><%= f.text_field :due_date, :size => 10,
|
|
|
|
|
:class => "w150",
|
|
|
|
|
<li>
|
|
|
|
|
<label class="label02" ><%= l(:field_due_date) %>:</label>
|
|
|
|
|
<% if @issue.safe_attribute? 'due_date' %>
|
|
|
|
|
<%= f.text_field :due_date, :size => 22,
|
|
|
|
|
:disabled => !@issue.leaf?,
|
|
|
|
|
:no_label=> true,
|
|
|
|
|
:required => @issue.required_attribute?('due_date') %>
|
|
|
|
|
<%= calendar_for('issue_due_date','start_date') if @issue.leaf? %></p>
|
|
|
|
|
<%= calendar_for('issue_due_date','start_date') if @issue.leaf? %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</li>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<li><% if @issue.safe_attribute? 'estimated_hours' %>
|
|
|
|
|
<p><%= f.text_field :estimated_hours, :size => 3,
|
|
|
|
|
<li>
|
|
|
|
|
<label class="label02" ><%= l(:field_estimated_hours) %>:</label>
|
|
|
|
|
<% if @issue.safe_attribute? 'estimated_hours' %>
|
|
|
|
|
<%= f.text_field :estimated_hours, :size => 22,
|
|
|
|
|
:disabled => !@issue.leaf?,
|
|
|
|
|
:class => "w150",
|
|
|
|
|
:required => @issue.required_attribute?('estimated_hours') %> <%= l(:field_hours) %></p>
|
|
|
|
|
:no_label=> true,
|
|
|
|
|
:required => @issue.required_attribute?('estimated_hours') %>
|
|
|
|
|
<span class="mt3 ml5"><%= l(:field_hours) %></span>
|
|
|
|
|
<% end %>
|
|
|
|
|
</li>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<li><label class="label02" > % 完成 : </label>
|
|
|
|
|
<select id="" name="" class="w150" >
|
|
|
|
|
<option value="0" >0 %</option>
|
|
|
|
|
<option value="10">10 %</option>
|
|
|
|
|
<option value="20">20 %</option>
|
|
|
|
|
<option value="30">30 %</option>
|
|
|
|
|
<option value="40">40 %</option>
|
|
|
|
|
<option value="50">50 %</option>
|
|
|
|
|
<option value="60">60 %</option>
|
|
|
|
|
<option value="70">70 %</option>
|
|
|
|
|
<option value="80">80 %</option>
|
|
|
|
|
<option value="90">90 %</option>
|
|
|
|
|
<option value="100">100 %</option>
|
|
|
|
|
</select>
|
|
|
|
|
<% if @issue.safe_attribute?('done_ratio') && @issue.leaf? && Issue.use_field_for_done_ratio? %>
|
|
|
|
|
<%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }),
|
|
|
|
|
{:required => @issue.required_attribute?('done_ratio'), :no_label=> true ,:onchange => "PrecentChange(this.value)"},
|
|
|
|
|
:class => "w150" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</li>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</ul>
|
|
|
|
@ -144,13 +157,7 @@
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<% if @issue.safe_attribute?('done_ratio') && @issue.leaf? && Issue.use_field_for_done_ratio? %>
|
|
|
|
|
<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }), {:required => @issue.required_attribute?('done_ratio')},
|
|
|
|
|
{:onchange => "PrecentChange(this.value)"} %></p>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<% if @issue.safe_attribute? 'custom_field_values' %>
|
|
|
|
|
<%= render :partial => 'issues/form_custom_fields' %>
|
|
|
|
|