39 lines
1.9 KiB
Plaintext
39 lines
1.9 KiB
Plaintext
<ul>
|
|
<% comments.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">
|
|
<div class="homepagePostReplyPortrait">
|
|
<%= link_to image_tag(url_to_avatar(comment.creator_user), :width => 33, :height => 33, :alt => "用户头像"), user_url_in_org(comment.creator_user.id) %>
|
|
</div>
|
|
<div class="homepagePostReplyDes">
|
|
<div class="homepagePostReplyPublisher">
|
|
<%= link_to comment.creator_user.show_name, user_url_in_org(comment.creator_user.id), :class => "newsBlue mr10 f14" %>
|
|
<%= format_activity_day(comment.created_time) %> <%= format_time(comment.created_time, false) %>
|
|
<span id="reply_praise_count_<%=comment.id %>">
|
|
<%=render :partial=> "praise_tread/praise", :locals => {:activity=>comment, :user_activity_id=>comment.id,:type=>"reply"}%>
|
|
</span>
|
|
</div>
|
|
<% if !comment.content_detail.blank? || comment.class == Journal %>
|
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= comment.id %>">
|
|
<% if comment.class == Journal %>
|
|
<% if comment.details.any? %>
|
|
<% details_to_strings(comment.details).each do |string| %>
|
|
<p><%= string %></p>
|
|
<% end %>
|
|
<% end %>
|
|
<P><%= comment.notes.html_safe %></P>
|
|
<% else %>
|
|
<%= comment.content_detail.html_safe %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="cl"></div>
|
|
</li>
|
|
<% end %>
|
|
</ul> |