Date
<%= compact_time(post.created_at) %>
<% if CurrentUser.is_moderator? %>
User
<%= link_to_user(post.uploader) %>
<% end %>
Rating
<%= post.rating %>
Score
<%= post.score %>
<% if CurrentUser.is_voter? %>
(vote <%= link_to(content_tag("i", nil, class: "far fa-thumbs-up"), post_votes_path(:score => "up", :post_id => post.id), :remote => true, :method => :post) %>/<%= link_to(content_tag("i", nil, class: "far fa-thumbs-down"), post_votes_path(:score => "down", :post_id => post.id), :remote => true, :method => :post) %>)
<% end %>
Tags
<%= post.presenter.inline_tag_list_html %>