_attributes.rhtml
45 lines
| 2.2 KiB
| text/html+ruby
|
RhtmlLexer
|
r2994 | <% 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><%= l(:field_status) %></label> <%= @issue.status.name %></p> | ||||
<% end %> | ||||
<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></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 %> | ||||
|
r3002 | <%= prompt_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'), | ||
l(:label_issue_category_new), | ||||
'category[name]', | ||||
|
r2994 | {:controller => 'projects', :action => 'add_issue_category', :id => @project}, | ||
|
r3002 | :title => l(:label_issue_category_new), | ||
:tabindex => 199) if authorize_for('projects', 'add_issue_category') %></p> | ||||
|
r2994 | <% end %> | ||
<% unless @issue.assignable_versions.empty? %> | ||||
|
r3012 | <p><%= f.select :fixed_version_id, version_options_for_select(@issue.assignable_versions, @issue.fixed_version), :include_blank => true %> | ||
<%= prompt_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'), | ||||
l(:label_version_new), | ||||
'version[name]', | ||||
{:controller => 'projects', :action => 'add_version', :id => @project}, | ||||
:title => l(:label_version_new), | ||||
:tabindex => 200) if authorize_for('projects', 'add_version') %> | ||||
</p> | ||||
|
r2994 | <% end %> | ||
</div> | ||||
<div class="splitcontentright"> | ||||
<p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p> | ||||
<p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p> | ||||
<p><%= f.text_field :estimated_hours, :size => 3 %> <%= l(:field_hours) %></p> | ||||
|
r3037 | <% if 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> | ||||
<%= render :partial => 'form_custom_fields' %> | ||||
<% end %> | ||||