diff --git a/app/views/reports/upload_tags.html.erb b/app/views/reports/upload_tags.html.erb
index 3fe930242..b96570128 100644
--- a/app/views/reports/upload_tags.html.erb
+++ b/app/views/reports/upload_tags.html.erb
@@ -4,26 +4,18 @@
<%= render "posts/partials/common/inline_blacklist" %>
-
-
-
- | Post ID |
- Tags added by uploader |
- Tags changed by other users |
-
-
-
- <% @upload_reports.each do |upload_report| %>
-
- | <%= PostPresenter.preview(upload_report.becomes(Post), show_deleted: true, tags: "user:#{upload_report.uploader.name}") %> |
-
- <%= TagSetPresenter.new(upload_report.uploader_tags_array).inline_tag_list_html %>
- |
- <%= diff_to_current(upload_report) %>
- |
- <% end %>
-
-
+ <%= table_for @upload_reports do |t| %>
+ <% t.column "Post ID", width: "10%" do |upload_report| %>
+ <%= PostPresenter.preview(upload_report.becomes(Post), show_deleted: true, tags: "user:#{upload_report.uploader.name}") %>
+ <% end %>
+ <% t.column "Tags added by uploader", width: "45%" do |upload_report| %>
+ <%= TagSetPresenter.new(upload_report.uploader_tags_array).inline_tag_list_html %>
+ <% end %>
+ <% t.column "Tags added by uploader", width: "45%" do |upload_report| %>
+ <%= diff_to_current(upload_report) %>
+ <% end %>
+ <% end %>
+
<%= numbered_paginator(@upload_reports) %>