You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
886 B
28 lines
886 B
6 years ago
|
<%= content_for(:header_tags) do %>
|
||
|
<%= import_ke(enable_at: true, prettify: false, init_activity: false) %>
|
||
|
<% end %>
|
||
|
<script type="text/javascript">
|
||
|
$(function(){
|
||
|
$("#RSide").removeAttr("id");
|
||
|
//$("#Container").css("width","1000px");
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<!--新建缺陷开始-->
|
||
|
<div class="pro_new_con ">
|
||
|
<div class="pro_newissue_con clear mb20">
|
||
|
<%= call_hook(:view_issues_new_top, {:issue => @issue}) %>
|
||
|
<%= labelled_form_for @issue, :url => project_issues_path(@project),
|
||
|
:html => {:id => 'issue-form', :multipart => true} do |f| %>
|
||
|
<%= error_messages_for 'issue' %>
|
||
|
<%= hidden_field_tag 'copy_from', params[:copy_from] if params[:copy_from] %>
|
||
|
<div>
|
||
|
<%= render :partial => 'issues/form', :locals => {:f => f} %>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!--新建缺陷结束-->
|
||
|
|
||
|
|