<%= link_to image_tag(url_to_avatar(@memo.author),:width=>50,:height => 50,:alt=>'贴吧图像' ),user_path(@memo.author) %>
<% if @memo.author.id == User.current.id || User.current.admin? || User.current == @forum.creator %>
-
<% if @memo.author.id == User.current.id || User.current.admin? %>
- 编辑
<% end %>
<% if User.current.admin? || User.current == @forum.creator %>
<% if @memo.sticky %>
- 取消置顶
<% else %>
- 置顶
<% end %>
<% end %>
- 删除
<% end %>
<%= render :partial => "memos/praise_tread",:locals => {:obj => @memo,:show_flag => true,:user_id =>User.current.id,:horizontal => true}%>
<%= link_to @memo.author.show_name, user_path(@memo.author), :class => "linkBlue2", :target=> "_blank"%>
<%= format_date( @memo.created_at)%>
<%= @memo.content.html_safe%>
<% if @memo.attachments.any?%>
<% options = {:author => true, :deletable => @memo.deleted_attach_able_by?(User.current) } %>
<%= render :partial => 'attachments_links', :locals => {:attachments => @memo.attachments, :options => options, :is_float => true} %>
<% end %>
更新时间:<%= format_date(@memo.updated_at)%>