2010-09-20 18:50:09 +00:00
|
|
|
<%= call_hook(:view_issues_form_details_top, { :issue => @issue, :form => f }) %>
|
|
|
|
|
2009-11-29 19:46:40 +00:00
|
|
|
<div id="issue_descr_fields" <%= 'style="display:none"' unless @issue.new_record? || @issue.errors.any? %>>
|
2008-01-20 11:30:57 +00:00
|
|
|
<p><%= f.select :tracker_id, @project.trackers.collect {|t| [t.name, t.id]}, :required => true %></p>
|
2010-08-20 15:22:19 +00:00
|
|
|
<%= observe_field :issue_tracker_id, :url => { :action => :new, :project_id => @project, :id => @issue },
|
2009-11-29 19:46:40 +00:00
|
|
|
:update => :attributes,
|
2008-01-20 11:30:57 +00:00
|
|
|
:with => "Form.serialize('issue-form')" %>
|
|
|
|
|
2008-01-23 19:58:11 +00:00
|
|
|
<p><%= f.text_field :subject, :size => 80, :required => true %></p>
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2010-10-30 16:15:31 +00:00
|
|
|
<% if User.current.allowed_to?(:manage_subtasks, @project) %>
|
|
|
|
<p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10 %></p>
|
2010-03-13 14:56:49 +00:00
|
|
|
<div id="parent_issue_candidates" class="autocomplete"></div>
|
2011-05-04 19:28:24 +02:00
|
|
|
<%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:id => @issue, :project_id => @project, :escape => false) }')" %>
|
2010-03-13 14:56:49 +00:00
|
|
|
<% end %>
|
|
|
|
|
2009-01-07 19:47:24 +00:00
|
|
|
<p><%= f.text_area :description,
|
2008-01-23 19:58:11 +00:00
|
|
|
: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 16:11:18 +00:00
|
|
|
</div>
|
2008-01-23 19:58:11 +00:00
|
|
|
|
2009-11-29 19:46:40 +00:00
|
|
|
<div id="attributes" class="attributes">
|
2010-09-15 22:43:30 +00:00
|
|
|
<%= render :partial => 'issues/attributes' %>
|
2009-01-17 07:53:32 +00:00
|
|
|
</div>
|
2007-10-06 08:08:29 +00:00
|
|
|
|
|
|
|
<% if @issue.new_record? %>
|
2010-10-22 18:20:00 +00:00
|
|
|
<p id="attachments_form"><%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= render :partial => 'attachments/form' %></p>
|
2007-10-06 08:08:29 +00:00
|
|
|
<% end %>
|
|
|
|
|
2008-12-22 19:21:02 +00:00
|
|
|
<% if @issue.new_record? && User.current.allowed_to?(:add_issue_watchers, @project) -%>
|
2010-10-22 18:20:00 +00:00
|
|
|
<p id="watchers_form"><label><%= l(:label_issue_watchers) %></label>
|
2008-12-22 19:21:02 +00:00
|
|
|
<% @issue.project.users.sort.each do |user| -%>
|
2009-12-02 19:17:42 +00:00
|
|
|
<label class="floating"><%= check_box_tag 'issue[watcher_user_ids][]', user.id, @issue.watched_by?(user) %> <%=h user %></label>
|
2008-12-22 19:21:02 +00:00
|
|
|
<% end -%>
|
|
|
|
</p>
|
|
|
|
<% end %>
|
|
|
|
|
2008-09-05 10:31:06 +00:00
|
|
|
<%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %>
|
|
|
|
|
2007-10-06 08:08:29 +00:00
|
|
|
<%= wikitoolbar_for 'issue_description' %>
|