75 lines
4.5 KiB
Plaintext
75 lines
4.5 KiB
Plaintext
<ul>
|
|
<% comments.reorder("created_on desc").each do |comment| %>
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
showNormalImage('reply_content_<%= comment.id %>');
|
|
autoUrl('reply_content_<%= comment.id %>');
|
|
});
|
|
</script>
|
|
<li class="homepagePostReplyContainer" nhname="reply_rec" onmouseover="$('#message_edit_<%= comment.id%>').show();" onmouseout="$('#message_edit_<%= comment.id%>').hide();">
|
|
<div class="homepagePostReplyPortrait">
|
|
<%= link_to image_tag(url_to_avatar(comment.user), :width => "33", :height => "33", :class =>"mt8"), user_path(comment.user_id), :alt => "用户头像" %>
|
|
</div>
|
|
<div class="homepagePostReplyDes">
|
|
<div class="homepagePostReplyPublisher">
|
|
<%= link_to comment.user.show_name, user_path(comment.user_id), :class => "newsBlue mr10 f14" %>
|
|
<%= time_from_now(comment.created_on) %>
|
|
</div>
|
|
<% unless comment.m_parent_id.nil? %>
|
|
<% parents_rely = [] %>
|
|
<% parents_rely = get_reply_parents parents_rely, comment %>
|
|
<% length = parents_rely.length %>
|
|
<div id="comment_reply_<%=comment.id %>">
|
|
<% if length <= 3 %>
|
|
<%=render :partial => 'users/comment_reply', :locals => {:comment => comment.parent} %>
|
|
<% else %>
|
|
<div class="orig_cont clearfix">
|
|
<div class="orig_cont clearfix">
|
|
<div>
|
|
<%=render :partial => 'users/comment_reply', :locals => {:comment => parents_rely[length - 1]} %>
|
|
</div>
|
|
<%=render :partial => 'users/comment_reply_detail', :locals => {:comment => parents_rely[length - 2]} %>
|
|
</div>
|
|
<div class="orig_cont_hide clearfix">
|
|
<span class="orig_icon" >↓ </span>
|
|
<span class="orig_icon" style="display:none;" > ↑</span>
|
|
<%= link_to '点击展开隐藏楼层', show_all_replies_users_path(:comment => comment, :type => comment.class),:remote=>true %>
|
|
</div>
|
|
<%=render :partial => 'users/comment_reply_detail', :locals => {:comment => parents_rely[0]} %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth t_txt" id="reply_content_<%= comment.id %>">
|
|
<%= comment.notes.html_safe %>
|
|
</div>
|
|
<div class="orig_reply mb10 mt-10">
|
|
<div class="reply">
|
|
<span class="reply-right">
|
|
<span id="reply_praise_count_<%=comment.id %>">
|
|
<%=render :partial=> "praise_tread/praise", :locals => {:activity=>comment, :user_activity_id=>comment.id,:type=>"reply"}%>
|
|
</span>
|
|
<span style="position: relative" class="fr mr20">
|
|
<%= link_to(
|
|
l(:button_reply),
|
|
{:controller => 'users' ,:action => 'reply_to', :reply_id => comment.id, :type => 'HomeworkCommon', :is_in_course => is_in_course, :user_activity_id => user_activity_id, :course_activity => course_activity},
|
|
:remote => true,
|
|
:method => 'get',
|
|
:title => l(:button_reply)) %>
|
|
<span id="reply_iconup_<%=comment.id %>" class="reply_iconup02" style="display: none"> ︿</span>
|
|
</span>
|
|
<!--<a action-type="reply" href="javascript:;" poped="false" class="fr mr20 linkGrey3" title="回复">回复</a>-->
|
|
<% if User.current.admin? ||is_teacher || comment.user == User.current%>
|
|
<%= link_to('删除', {:controller => 'words', :action => 'destroy', :object_id => comment, :user_id => comment.user,:is_in_course => is_in_course, :user_activity_id => user_activity_id, :course_activity => course_activity},
|
|
:remote => true, :confirm => l(:text_are_you_sure), :method => 'delete', :class => "fr mr20", :title => l(:button_delete)) %>
|
|
<% end %>
|
|
</span>
|
|
<div class="cl"></div>
|
|
</div>
|
|
</div>
|
|
<p id="reply_message_<%= comment.id%>"></p>
|
|
</div>
|
|
<div class="cl"></div>
|
|
</li>
|
|
<% end %>
|
|
</ul> |