% if recordings.present? %>
Click below to download the recordings of the live stream.
<% recordings.each do |recording| %>
-
<%= link_to(recording.download_file_name, recording.download_url, target: "_blank") %>
<% if (controller.class.module_parent.to_s != "Public" && policy(BroadcastRecording).destroy?) %>
<%= link_to "Hide", [broadcast.project, broadcast, recording], class: "btn-sm btn-primary ml-1 text-decoration-none", remote: true, method: :delete, data: { confirm: t('.confirm_hide') } %>
<% end %>
<% end %>
<% else %>
Recording of the live stream will appear here.
<% end %>