diff --git a/app/views/sessions/show.html.erb b/app/views/sessions/show.html.erb
index 6b9144d9051e0eb5e030792fadf6e75c8075afc2..aff3ec041e1dc9dd69faa1752e22c04c13ede024 100644
--- a/app/views/sessions/show.html.erb
+++ b/app/views/sessions/show.html.erb
@@ -23,18 +23,19 @@
   <h3 class="mt-4">Files <span class="font-normal">from Speakers' Filedrop</span></h3>
   <ul class="space-y-4 my-4">
     <% @session.filedrop_files.each do |file| %>
-      <li class="bg-white shadow rounded-lg p-4">
-        <div class="flex justify-between items-center">
+    <li class="bg-white shadow rounded-lg p-4">
+        <div class="flex flex-wrap justify-between items-start max-w-full">
           <div>
             <div class="text-gray-900 text-lg font-semibold"><%= file.name %></div>
             <div class="text-gray-500 text-sm">Size: <%= number_to_human_size(file.size) %></div>
+            <div class="text-gray-500 text-sm">Date: <%=file.orig_created&.in_time_zone(@session.conference.time_zone || 'UTC')&.strftime("%B %d, %Y %H:%M") %></div>
             <div class="text-gray-500 text-sm">Checksum: <%= file.checksum %></div>
           </div>
-          <div>
-            <%= link_to 'Download', download_filedrop_file_path(file), class: "bg-blue-500 text-white px-3 py-2 rounded" %>
-          </div>
+        <div class="mt-2 sm:mt-0 flex-shrink-0">
+          <%= link_to 'Download', download_filedrop_file_path(file), class: "bg-blue-500 text-white px-3 py-2 rounded" %>
         </div>
-      </li>
+      </div>
+    </li>
     <% end %>
   </ul>