2010-09-20 22:50:09 +04:00
|
|
|
<%= call_hook(:view_issues_form_details_top, { :issue => @issue, :form => f }) %>
|
|
|
|
|
2011-12-14 00:40:03 +04:00
|
|
|
<% if @issue.safe_attribute? 'is_private' %>
|
2011-04-15 17:23:13 +04:00
|
|
|
<p style="float:right; margin-right:1em;">
|
2011-07-30 13:06:30 +04:00
|
|
|
<label class="inline" for="issue_is_private" id="issue_is_private_label"><%= f.check_box :is_private, :no_label => true %> <%= l(:field_is_private) %></label>
|
2011-04-15 17:23:13 +04:00
|
|
|
</p>
|
|
|
|
<% end %>
|
2011-12-15 14:41:49 +04:00
|
|
|
|
|
|
|
<% if @issue.safe_attribute? 'tracker_id' %>
|
2008-01-20 14:30:57 +03:00
|
|
|
<p><%= f.select :tracker_id, @project.trackers.collect {|t| [t.name, t.id]}, :required => true %></p>
|
2011-12-13 00:43:51 +04:00
|
|
|
<%= observe_field :issue_tracker_id, :url => project_issue_form_path(@project, :id => @issue),
|
2009-11-29 22:46:40 +03:00
|
|
|
:update => :attributes,
|
2008-01-20 14:30:57 +03:00
|
|
|
:with => "Form.serialize('issue-form')" %>
|
2011-12-15 14:41:49 +04:00
|
|
|
<% end %>
|
2008-01-20 14:30:57 +03:00
|
|
|
|
2011-12-15 14:41:49 +04:00
|
|
|
<% if @issue.safe_attribute? 'subject' %>
|
2008-01-23 22:58:11 +03:00
|
|
|
<p><%= f.text_field :subject, :size => 80, :required => true %></p>
|
2011-12-15 14:41:49 +04:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% if @issue.safe_attribute? 'description' %>
|
2011-12-07 00:15:22 +04:00
|
|
|
<p>
|
2011-12-08 11:30:03 +04:00
|
|
|
<label><%= l(:field_description) %></label>
|
|
|
|
<%= link_to_function image_tag('edit.png'),
|
2011-12-07 00:15:22 +04:00
|
|
|
'Element.hide(this); Effect.toggle("issue_description_and_toolbar", "appear", {duration:0.3})' unless @issue.new_record? %>
|
2011-12-08 11:30:03 +04:00
|
|
|
<% content_tag 'span', :id => "issue_description_and_toolbar", :style => (@issue.new_record? ? nil : 'display:none') do %>
|
|
|
|
<%= f.text_area :description,
|
2008-01-23 22:58:11 +03:00
|
|
|
:cols => 60,
|
|
|
|
:rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min),
|
|
|
|
:accesskey => accesskey(:edit),
|
2011-12-07 00:15:22 +04:00
|
|
|
:class => 'wiki-edit',
|
|
|
|
:no_label => true %>
|
|
|
|
<% end %>
|
|
|
|
</p>
|
2011-12-15 14:41:49 +04:00
|
|
|
<%= wikitoolbar_for 'issue_description' %>
|
|
|
|
<% end %>
|
2008-01-23 22:58:11 +03:00
|
|
|
|
2009-11-29 22:46:40 +03:00
|
|
|
<div id="attributes" class="attributes">
|
2011-09-18 03:06:01 +04:00
|
|
|
<%= render :partial => 'issues/attributes' %>
|
2009-01-17 10:53:32 +03:00
|
|
|
</div>
|
2007-10-06 12:08:29 +04:00
|
|
|
|
2008-09-05 14:31:06 +04:00
|
|
|
<%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %>
|