14 lines
631 B
Plaintext
14 lines
631 B
Plaintext
<% if recordings.present? %>
|
|
<p>Click below to download the recordings of the live stream.</p>
|
|
<ul class="mt-2">
|
|
<% recordings.each do |recording| %>
|
|
<li><%= link_to(recording.download_file_name, recording.download_url, target: "_blank") %></li>
|
|
<% end %>
|
|
</ul>
|
|
<div id="recordings_pagination" class="row mt-5 justify-content-center">
|
|
<%= will_paginate(recordings, params: {controller: "broadcasts", action: "show", project_id: broadcast.project_id, id: broadcast.id, page: params[:page], active_tab: 'recordings'}) %>
|
|
</div>
|
|
<% else %>
|
|
<p>Recording of the live stream will appear here.</p>
|
|
<% end %>
|