kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
54 lines
3.0 KiB
54 lines
3.0 KiB
<%#-- copyright
|
|
OpenProject is a project management system.
|
|
|
|
Copyright (C) 2012-2013 the OpenProject Team
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License version 3.
|
|
|
|
See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
++#%>
|
|
|
|
<%= fields_for :issue, @issue, :builder => TabularFormBuilder do |f| %>
|
|
<div class="splitcontentleft">
|
|
<% if @issue.new_record? || @allowed_statuses.any? %>
|
|
<p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
|
|
<% else %>
|
|
<p><label><%= Issue.human_attribute_name(:status) %></label> <%= h(@issue.status.name) %></p>
|
|
<% end %>
|
|
|
|
<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), {:required => true}, :disabled => attrib_disabled?(@issue, 'priority_id') %></p>
|
|
<p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
|
|
<% unless @project.issue_categories.empty? %>
|
|
<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
|
|
<%= prompt_to_remote(image_tag('plus.png', :style => 'vertical-align: middle;'),
|
|
l(:label_issue_category_new),
|
|
'category[name]',
|
|
{:controller => '/issue_categories', :action => 'new', :project_id => @project},
|
|
:title => l(:label_issue_category_new)) if authorize_for('issue_categories', 'new') %></p>
|
|
<% end %>
|
|
<% unless @issue.assignable_versions.empty? %>
|
|
<p>
|
|
<%= f.select :fixed_version_id, version_options_for_select(@issue.assignable_versions, @issue.fixed_version), :include_blank => true %>
|
|
<%= prompt_to_remote(image_tag('plus.png', :style => 'vertical-align: middle;'),
|
|
l(:label_version_new),
|
|
'version[name]',
|
|
{:controller => '/versions', :action => 'create', :project_id => @project},
|
|
:title => l(:label_version_new)) if authorize_for('versions', 'new') %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="splitcontentright">
|
|
<p><%= f.text_field :start_date, :size => 10, :disabled => attrib_disabled?(@issue, 'start_date') %><%= calendar_for('issue_start_date') if !attrib_disabled?(@issue, 'start_date') %></p>
|
|
<p><%= f.text_field :due_date, :size => 10, :disabled => attrib_disabled?(@issue, 'due_date') %><%= calendar_for('issue_due_date') if !attrib_disabled?(@issue, 'due_date') %></p>
|
|
<p><%= f.text_field :estimated_hours, :size => 3, :disabled => attrib_disabled?(@issue, 'estimated_hours') %> <%= TimeEntry.human_attribute_name(:hours) %></p>
|
|
<% if !attrib_disabled?(@issue, 'done_ratio') && Issue.use_field_for_done_ratio? %>
|
|
<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div style="clear:both;"> </div>
|
|
<%= render :partial => 'issues/form_custom_fields' %>
|
|
<% end %>
|
|
|