diff --git a/app/views/uploads/show.html.erb b/app/views/uploads/show.html.erb
index 8ffa690a1..f03ecfa11 100644
--- a/app/views/uploads/show.html.erb
+++ b/app/views/uploads/show.html.erb
@@ -6,6 +6,17 @@
Date: <%= @upload.created_at %>
Source: <%= @upload.source %>
Tags: <%= @upload.tag_string %>
+ <% if @upload.md5.present? %>
+ MD5: <%= @upload.md5 %>
+ <% end %>
+ <% if @upload.file_size.present? %>
+
+ Size: <%= number_to_human_size(@upload.file_size) %>
+ <% if @upload.image_width.present? %>
+ (<%= @upload.image_width %>x<%= @upload.image_height %>)
+ <% end %>
+
+ <% end %>
<% if @upload.is_completed? %>