Initial commit
This commit is contained in:
36
app/views/video_analyses/_audio_confirmations.html.erb
Normal file
36
app/views/video_analyses/_audio_confirmations.html.erb
Normal file
@@ -0,0 +1,36 @@
|
||||
<% if audio_confirmations.any? %>
|
||||
<div class="table-responsive">
|
||||
<table class="table-striped table-sm w-100" style="table-layout: fixed;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width: 5%;"></th>
|
||||
<th style="">EDL #</th>
|
||||
<th style="">EDL TC</th>
|
||||
<th style="">VID TC</th>
|
||||
<th style="">Filename</th>
|
||||
<th style="width: 10%;"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% audio_confirmations.each do |audio_confirmation| %>
|
||||
<tr data-audio-id="<%= audio_confirmation.id %>">
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td><%= audio_confirmation.timecode_in %></td>
|
||||
<td><a data-behavior="seekable-timecode"><%= audio_confirmation.appears_at %></a></td>
|
||||
<td><%= audio_confirmation.source_file_name %></td>
|
||||
<td>
|
||||
<%= link_to fa_icon("trash fw"), audio_confirmation_path(audio_confirmation), method: :delete, class: "btn btn-danger btn-sm", remote: true %>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<% else %>
|
||||
<div class="card-body">
|
||||
<div class="text-center text-muted py-2">
|
||||
Music Releases that have been added to the report will appear here
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
Reference in New Issue
Block a user