25 lines
1.5 KiB
Plaintext
25 lines
1.5 KiB
Plaintext
<% if @journal_destroyed.nil? %>
|
|
alert('<%=l(:notice_failed_delete)%>');
|
|
<% else %>
|
|
//教师评论
|
|
<% if @is_comprehensive_evaluation == 1 %>
|
|
//$('#comprehensive_evaluation').html('<#%= escape_javascript(render(:partial => 'comprehensive_evaluation',
|
|
//:locals => {:comprehensive_evaluation => @comprehensive_evaluation,:homework => @homework,:teaher_score => @teaher_score} )) %>');
|
|
HoverLi(4);
|
|
$('#jour_count_4').html('<%= @comprehensive_evaluation.count %>')
|
|
$('#tbc_04').html('<%= escape_javascript(render(:partial => 'homework_attach/jour',:locals => {:jours => @comprehensive_evaluation,:show_score => true,:show_name => true,:is_jour => false})) %>')
|
|
//匿评
|
|
<% elsif @is_comprehensive_evaluation == 2 %>
|
|
// $('#message').html('<#%= escape_javascript(render(:partial => 'showjour', :locals => {:jour =>@jour, :state => false,:homework => @homework} )) %>');
|
|
// $('#pre_show').html('<#%= escape_javascript(render(:partial => 'pre_show', :locals => {:content => nil})) %>');
|
|
HoverLi(5);
|
|
$('#jour_count_5').html('<%= @anonymous_comments.count %>')
|
|
$('#tbc_05').html('<%= escape_javascript(render(:partial => 'homework_attach/jour',:locals => {:jours => @anonymous_comments,:show_score => true,:show_name => false,:is_jour => false})) %>')
|
|
//留言
|
|
<% else %>
|
|
HoverLi(3);
|
|
$('#jour_count_3').html('<%= @jours.count %>')
|
|
$('#tbc_03').html('<%= escape_javascript(render(:partial => 'homework_attach/jour',:locals => {:jours => @jour,:show_score => false,:show_name => true,:is_jour => true})) %>')
|
|
<% end %>
|
|
<% end %>
|