Initial commit
This commit is contained in:
19
app/views/reports/_report.html.erb
Normal file
19
app/views/reports/_report.html.erb
Normal file
@@ -0,0 +1,19 @@
|
||||
<tr>
|
||||
<td>
|
||||
<%= report.video_name %>
|
||||
</td>
|
||||
<td>
|
||||
<%= report.video_number %>
|
||||
</td>
|
||||
<td>
|
||||
<%= report.name %>
|
||||
</td>
|
||||
<td>
|
||||
<% if report.published_at %>
|
||||
<%= time_ago_in_words(report.published_at) %> ago
|
||||
<% end %>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<%= link_to t(".actions.download"), report.url, class: "btn btn-sm btn-primary" %>
|
||||
</td>
|
||||
</tr>
|
||||
Reference in New Issue
Block a user