90 lines
4.4 KiB
Plaintext
90 lines
4.4 KiB
Plaintext
<%= labelled_fields_for :issue, @issue do |f| %>
|
||
<%#= call_hook(:view_issues_form_details_top, {:issue => @issue, :form => f}) %>
|
||
<div class="newpro_box">
|
||
<ul>
|
||
<li>
|
||
<% if @issue.safe_attribute? 'tracker_id' %>
|
||
<label class="label"><span class="c_red f12">*</span> 类型 : </label>
|
||
<%= f.select :tracker_id, @issue.project.trackers.collect { |t| [t.name, t.id] },
|
||
{:required => true, :no_label => true},
|
||
#:onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')",
|
||
:class => "w90" %>
|
||
<% end %>
|
||
</li>
|
||
<li>
|
||
<% if @issue.safe_attribute? 'is_private' %>
|
||
<%= f.check_box :is_private, :no_label => true, :class => "ml30" %>
|
||
<label class="fl ml5 mt3" for="issue_is_private" id="issue_is_private_label"><%= l(:field_is_private) %></label>
|
||
<label class="fl ml5 mt3" for="issue_is_private" id="issue_is_private_tips"><%= l(:field_is_private_tips)%></label>
|
||
<% end %>
|
||
</li>
|
||
<div class="cl"></div>
|
||
<!--<li>-->
|
||
<!--<%# if @issue.safe_attribute? 'project_id' %>-->
|
||
<%#= 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')}')" %>
|
||
<!--<%# end %>-->
|
||
<!--</li>-->
|
||
<li>
|
||
<% if @issue.safe_attribute? 'subject' %>
|
||
<label class="label"><span class="c_red f12">*</span> 主题 : </label>
|
||
<%= f.text_field :subject, :class => "w606", :maxlength => 255, :style => "font-size:small", :no_label => true %>
|
||
<!--Added by young-->
|
||
<%= javascript_tag do %>
|
||
observeAutocompleteField('issue_subject',
|
||
'<%= escape_javascript auto_complete_issues_path(:project_id => @project, :scope => (Setting.cross_project_issue_relations? ? 'all' : nil)) %>',
|
||
{ select: function(event, ui) {
|
||
$('input#issue_subject').val(ui.item.value);
|
||
}
|
||
});
|
||
<% end %>
|
||
|
||
<% end %>
|
||
</li>
|
||
<div class="cl"></div>
|
||
|
||
<li>
|
||
<% if @issue.safe_attribute? 'description' %>
|
||
<label class="label"> 描述 : </label>
|
||
<%= f.label_for_field :description, :required => @issue.required_attribute?('description'), :no_label => true, :class => "label" %>
|
||
<%#= link_to_function image_tag('edit.png'), '$(this).hide(); $("#issue_description_and_toolbar").show()' unless @issue.new_record? %>
|
||
<%#= content_tag 'span', :id => "issue_description_and_toolbar" do %>
|
||
<%= f.kindeditor :description,:editor_id => "issue_desc_editor", :width=>'85%', :height =>170, :resizeType => 0, :no_label => true,at_id: @project.id, at_type: @project.class.to_s %>
|
||
<%# end %>
|
||
<%#= wikitoolbar_for 'issue_description' %>
|
||
<% end %>
|
||
</li>
|
||
<div class="cl"></div>
|
||
</ul>
|
||
</div>
|
||
<li>
|
||
<% if @copy_from && !@copy_from.leaf? %>
|
||
<p>
|
||
<label for="copy_subtasks"><%= l(:label_copy_subtasks) %></label>
|
||
<%= check_box_tag 'copy_subtasks', '1', @copy_subtasks %>
|
||
</p>
|
||
<% end %>
|
||
</li>
|
||
<div class="cl"></div>
|
||
<li>
|
||
<br>
|
||
<label class="label"><%= l(:label_attachment_plural) %>:</label>
|
||
<%= render :partial => 'attachments/form', :locals => {:container => @issue} %>
|
||
</li>
|
||
<div class="cl"></div>
|
||
<div id="attributes">
|
||
<%= render :partial => 'issues/attributes' %>
|
||
</div>
|
||
<div class="cl"></div>
|
||
<%= call_hook(:view_issues_form_details_bottom, {:issue => @issue, :form => f}) %>
|
||
<% end %>
|
||
<a href="javascript:void(0);" onclick="issue_desc_editor.sync();$('#issue-form').submit();" class="blue_btn fl ml80" id="issue_confirm"> 确定</a>
|
||
<% if params[:action] == "new" %>
|
||
<% if @copy_from %>
|
||
<%= link_to "取消", issue_path(@copy_from), :class => "grey_btn fl mr50 ml10" %>
|
||
<% end %>
|
||
<% else %>
|
||
<a href="javascript:void(0);" onclick="issueDetailShow();" class="grey_btn fl mr50 ml10" > 取消 </a>
|
||
<% end %>
|
||
|