34 lines
1.5 KiB
Plaintext
34 lines
1.5 KiB
Plaintext
<ul>
|
|
<% issue.journals.reorder("created_on desc").each do |reply| %>
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
showNormalImage('reply_content_<%= reply.id %>');
|
|
});
|
|
</script>
|
|
<% replies_all_i=replies_all_i + 1 %>
|
|
<li class="homepagePostReplyContainer" nhname="reply_rec" >
|
|
<div class="homepagePostReplyPortrait">
|
|
<%= link_to image_tag(url_to_avatar(reply.user), :width => "33", :height => "33"), user_path(reply.user_id), :alt => "用户头像" %>
|
|
</div>
|
|
<div class="homepagePostReplyDes">
|
|
<div class="homepagePostReplyPublisher mt-4">
|
|
<% if reply.try(:user).try(:realname) == ' ' %>
|
|
<%= link_to reply.try(:user), user_path(reply.user_id), :class => "newsBlue mr10 f14" %>
|
|
<% else %>
|
|
<%= link_to reply.try(:user).try(:realname), user_path(reply.user_id), :class => "newsBlue mr10 f14" %>
|
|
<% end %>
|
|
<%= format_time(reply.created_on) %>
|
|
</div>
|
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= reply.id %>">
|
|
<% if reply.details.any? %>
|
|
<% details_to_strings(reply.details).each do |string| %>
|
|
<p><%= string %></p>
|
|
<% end %>
|
|
<% end %>
|
|
<P><%= reply.notes.html_safe %></P>
|
|
</div>
|
|
</div>
|
|
<div class="cl"></div>
|
|
</li>
|
|
<% end %>
|
|
</ul> |