|
<%= post.user.username %>
<%= image_tag post.user.gravatar_url %>
<% if post.user.admin? %> Administrator <% end %> <% if post.user.moderator? %> Moderator <% end %> <% if post.user.banned? %> Banned <% end %> Posts <%= post.user.posts_count %>Registered <%=l post.user.created_at %> |
<%= link_to ("#"+ i.to_s ), post %> Posted <%=l post.created_at %> <% if !@topic.locked %> <%= link_to "Reply", new_topic_post_path(@topic) if can? :create, @topic.posts.new%> <%= link_to "Quote", new_topic_post_path(@topic, :quote => post) if can? :create, @topic.posts.new %> <%= link_to "Edit", edit_post_path(post) if can? :update, post %> <% end %> <%= link_to "Delete", post, :confirm => "Are you sure?", :method => :delete if can? :destroy, post %> |
| <%= post.body.bbcode_to_html(@my_blockquote).html_safe %> |
<%= link_to "Back to Forum", forum_path(@topic.forum) %>