2012-04-25 21:17:49 +04:00
|
|
|
<%= labelled_fields_for :issue, @issue do |f| %>
|
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;">
|
2012-07-29 14:21:27 +04:00
|
|
|
<%= f.check_box :is_private, :no_label => true %><label class="inline" for="issue_is_private" id="issue_is_private_label"><%= l(:field_is_private) %></label>
|
2011-04-15 17:23:13 +04:00
|
|
|
</p>
|
|
|
|
<% end %>
|
2011-12-15 14:41:49 +04:00
|
|
|
|
2012-01-08 15:16:54 +04:00
|
|
|
<% if @issue.safe_attribute? 'project_id' %>
|
2012-07-22 17:29:26 +04:00
|
|
|
<p><%= f.select :project_id, project_tree_options_for_select(@issue.allowed_target_projects, :selected => @issue.project), {:required => true},
|
|
|
|
:onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')" %></p>
|
2012-01-07 16:34:52 +04:00
|
|
|
<% end %>
|
|
|
|
|
2011-12-15 14:41:49 +04:00
|
|
|
<% if @issue.safe_attribute? 'tracker_id' %>
|
2012-07-22 17:29:26 +04:00
|
|
|
<p><%= f.select :tracker_id, @issue.project.trackers.collect {|t| [t.name, t.id]}, {:required => true},
|
|
|
|
:onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')" %></p>
|
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>
|
2012-07-15 18:12:17 +04:00
|
|
|
<%= f.label_for_field :description, :required => @issue.required_attribute?('description') %>
|
2012-07-22 17:29:26 +04:00
|
|
|
<%= link_to_function image_tag('edit.png'), '$(this).hide(); $("#issue_description_and_toolbar").show()' unless @issue.new_record? %>
|
2012-04-25 21:17:49 +04:00
|
|
|
<%= content_tag 'span', :id => "issue_description_and_toolbar", :style => (@issue.new_record? ? nil : 'display:none') do %>
|
2011-12-08 11:30:03 +04:00
|
|
|
<%= 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 }) %>
|
2012-01-07 16:34:52 +04:00
|
|
|
<% end %>
|