2008-01-20 14:30:57 +03:00
|
|
|
<% if @issue.new_record? %>
|
|
|
|
<p><%= f.select :tracker_id, @project.trackers.collect {|t| [t.name, t.id]}, :required => true %></p>
|
|
|
|
<%= observe_field :issue_tracker_id, :url => { :action => :new },
|
|
|
|
:update => :content,
|
|
|
|
:with => "Form.serialize('issue-form')" %>
|
|
|
|
<% end %>
|
|
|
|
|
2008-02-09 19:11:18 +03:00
|
|
|
<div id="issue_descr_fields" <%= 'style="display:none"' unless @issue.new_record? || @issue.errors.any? %>>
|
2008-01-23 22:58:11 +03:00
|
|
|
<p><%= f.text_field :subject, :size => 80, :required => true %></p>
|
|
|
|
<p><%= f.text_area :description, :required => true,
|
|
|
|
:cols => 60,
|
|
|
|
:rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min),
|
|
|
|
:accesskey => accesskey(:edit),
|
|
|
|
:class => 'wiki-edit' %></p>
|
2008-02-09 19:11:18 +03:00
|
|
|
</div>
|
2008-01-23 22:58:11 +03:00
|
|
|
|
2007-10-06 12:08:29 +04:00
|
|
|
<div class="splitcontentleft">
|
2008-02-12 21:33:38 +03:00
|
|
|
<% if @issue.new_record? || @allowed_statuses.any? %>
|
2007-10-06 12:08:29 +04:00
|
|
|
<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>
|
|
|
|
<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
|
|
|
|
<%= prompt_to_remote(l(:label_issue_category_new),
|
|
|
|
l(:label_issue_category_new), 'category[name]',
|
|
|
|
{:controller => 'projects', :action => 'add_issue_category', :id => @project},
|
2008-01-20 20:36:01 +03:00
|
|
|
:class => 'small', :tabindex => 199) if authorize_for('projects', 'add_issue_category') %></p>
|
2008-01-23 22:58:11 +03:00
|
|
|
<%= content_tag('p', f.select(:fixed_version_id,
|
|
|
|
(@project.versions.sort.collect {|v| [v.name, v.id]}),
|
|
|
|
{ :include_blank => true })) unless @project.versions.empty? %>
|
2007-10-06 12:08:29 +04:00
|
|
|
</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>
|
|
|
|
<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
|
|
|
|
</div>
|
|
|
|
|
2008-01-23 22:58:11 +03:00
|
|
|
<div style="clear:both;"> </div>
|
2008-01-20 20:20:34 +03:00
|
|
|
<%= render :partial => 'form_custom_fields', :locals => {:values => @custom_values} %>
|
2007-10-06 12:08:29 +04:00
|
|
|
|
|
|
|
<% if @issue.new_record? %>
|
2008-02-29 22:46:58 +03:00
|
|
|
<p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
|
2007-10-06 12:08:29 +04:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= wikitoolbar_for 'issue_description' %>
|
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= javascript_include_tag 'calendar/calendar' %>
|
|
|
|
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
|
|
|
|
<%= javascript_include_tag 'calendar/calendar-setup' %>
|
|
|
|
<%= stylesheet_link_tag 'calendar' %>
|
|
|
|
<% end %>
|