2014-08-14 16:39:07 +08:00
|
|
|
<script type="text/javascript">
|
|
|
|
window.onready = function()
|
|
|
|
{
|
2014-08-14 16:40:12 +08:00
|
|
|
$("#issue_project_id").css("width","100%");
|
2014-08-14 16:39:07 +08:00
|
|
|
$("#issue_project_id").css("overflow ","hidden");
|
|
|
|
//issue_project_id
|
|
|
|
}
|
|
|
|
</script>
|
2015-04-09 08:43:51 +08:00
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
<%= labelled_fields_for :issue, @issue do |f| %>
|
|
|
|
<%= call_hook(:view_issues_form_details_top, { :issue => @issue, :form => f }) %>
|
2015-04-09 18:37:10 +08:00
|
|
|
<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=> "w150"
|
|
|
|
%>
|
|
|
|
<% end %>
|
|
|
|
</li>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
2015-04-09 18:37:10 +08:00
|
|
|
<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>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
|
|
|
|
2015-04-09 18:37:10 +08:00
|
|
|
<% end %>
|
|
|
|
</li>
|
|
|
|
<div class="cl"></div>
|
|
|
|
<li>
|
|
|
|
<% if @issue.safe_attribute? 'project_id' %>
|
|
|
|
<p><%= f.select :project_id, project_tree_options_for_select(@issue.allowed_target_projects, :selected => @issue.project), {:required => true},
|
2015-04-09 08:43:51 +08:00
|
|
|
:onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')" %></p>
|
2015-04-09 18:37:10 +08:00
|
|
|
<% end %>
|
|
|
|
</li>
|
2015-04-09 08:43:51 +08:00
|
|
|
|
2015-04-09 18:37:10 +08:00
|
|
|
<li>
|
|
|
|
<% if @issue.safe_attribute? 'subject' %>
|
|
|
|
<label class="label"><span class="c_red f12">*</span> 主题 : </label>
|
|
|
|
<%= f.text_field :subject,
|
|
|
|
:size => 80,
|
|
|
|
:maxlength => 255,
|
|
|
|
:required => true,
|
|
|
|
: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)) %>',
|
2014-11-05 15:01:36 +08:00
|
|
|
{ select: function(event, ui) {
|
|
|
|
$('input#issue_subject').val(ui.item.value);
|
|
|
|
}
|
|
|
|
});
|
2015-04-09 18:37:10 +08:00
|
|
|
<% end %>
|
2013-08-19 19:55:37 +08:00
|
|
|
|
2015-04-09 18:37:10 +08:00
|
|
|
<% end %>
|
|
|
|
</li>
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
|
|
|
<li>
|
|
|
|
<% if @issue.safe_attribute? 'description' %>
|
|
|
|
<label class="label"><span class="c_red f12">*</span> 描述 : </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", :style => (@issue.new_record? ? nil : 'display:none') do %>
|
|
|
|
<%= f.text_area :description,
|
|
|
|
:cols => 60,
|
|
|
|
:rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min),
|
|
|
|
:accesskey => accesskey(:edit),
|
|
|
|
:class => "w583",
|
|
|
|
:no_label => true %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= wikitoolbar_for 'issue_description' %>
|
|
|
|
<% end %>
|
|
|
|
</li>
|
|
|
|
<div class="cl"></div>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
<div id="attributes" class="attributes">
|
|
|
|
<%= render :partial => 'issues/attributes' %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %>
|
|
|
|
<% end %>
|
2015-04-09 18:37:10 +08:00
|
|
|
</ul>
|