Skip to content
Snippets Groups Projects
Verified Commit 0e78825e authored by Felix Eckhofer's avatar Felix Eckhofer :man_dancing:
Browse files

Fix mobile view of files and add date

parent b66e6af4
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment