<% if memos.any? %> <% memos.each do |topic| %>
<%= link_to image_tag(url_to_avatar(topic.author), :width => 50,:height => 50,:alt => '贴吧图片'), user_path(topic.author) if topic.author%>
<%= topic.content.html_safe%>
<% author = topic.last_reply.try(:author)%> <% if author%>
最后回复:<%= author.name%>
<%= format_date(topic.last_reply.created_at)%>
<% end%>
<%= link_to (topic.replies_count), forum_memo_path(topic.forum, topic),:target =>'_blank',:class=>'linkGrey2' %>
<% end %> <% else %>

<%= l(:label_no_data) %>

<% end %>