- -
- <%= render "modqueue/quick_mod", post: post %>
-
- - Rating: <%= post.pretty_rating %>
- - Score: <%= post.score %>
- -
- Size:
- <%= number_to_human_size(post.file_size) %>
- <% if post.has_dimensions? %>
- (<%= post.image_width %>x<%= post.image_height %>)
- <% end %>
-
- - Uploader: <%= link_to_user(post.uploader) %> <%= time_ago_in_words_tagged(post.created_at) %>
+
+ <%= render "modqueue/quick_mod", post: post %>
+ <%= render "post_disapprovals/compact_counts", disapprovals: post.disapprovals, post: post %>
+
+
+
+
+ Date
+ <%= compact_time(post.created_at) %>
+
+
+
+ User
+ <%= link_to_user(post.uploader) %>
+ <%= link_to "ยป", modqueue_index_path(search: { tags: "user:#{post.uploader.name}" }) %>
+
+
+
+ Rating
+ <%= post.pretty_rating %>
+
+
+
+ Score
+
+ <%= post.score %>
+ <% if CurrentUser.is_voter? %>
+ (vote <%= link_to tag.i(class: "far fa-thumbs-up"), post_post_votes_path(score: "up", post_id: post.id), remote: true, method: :post %>/<%= link_to tag.i(class: "far fa-thumbs-down"), post_post_votes_path(score: "down", post_id: post.id), remote: true, method: :post %>)
+ <% end %>
+
+
+
+
+
+
+ Source
+ <%= post_source_tag(post) %>
+
+
+
+ <% if post.has_active_pools? %>
+
+
+ Pools
+ <%= render "pools/inline_list", pools: post.pools.undeleted %>
+
+
+ <% end %>
+
+
+
+ Tags
+ <%= post.presenter.inline_tag_list_html %>
+
+
+
+
<% if post.is_flagged? %>
-
- Flagged: <%= render "post_flags/reasons", flags: post.flags %>
+
+ Flagged
+ <%= render "post_flags/reasons", flags: post.flags %>
+
<% end %>
+
<% if (post.is_flagged? || post.is_deleted?) && post.appeals.any? %>
- - Appeals: <%= render "post_appeals/reasons", appeals: post.appeals %>
+
+ Appeals
+ <%= render "post_appeals/reasons", appeals: post.appeals %>
+
<% end %>
- -
- Hidden: <%= render "post_disapprovals/compact_counts", :disapprovals => post.disapprovals, :post => post %>
-
- - Source: <%= post_source_tag(post) %>
- <% if post.has_active_pools? %>
- - Pools: <%= render "pools/inline_list", pools: post.pools.undeleted %>
- <% end %>
- - Tags: <%= post.presenter.inline_tag_list_html %>
-
+