42 lines
979 B
Text
42 lines
979 B
Text
<h1>Clips</h1>
|
|
|
|
<%= link_to "New clip", new_clip_path if authenticated? %>
|
|
|
|
<table id="clips" border="1">
|
|
<tr>
|
|
<th>Preview</th>
|
|
<th>Title</th>
|
|
<th>Duration</th>
|
|
<th>Category</th>
|
|
<th>Updated at</th>
|
|
<th>Created at</th>
|
|
<th>Tags</th>
|
|
</tr>
|
|
<% @clips.each do |clip| %>
|
|
<tr>
|
|
<td>
|
|
<%= link_to (image_tag url_for(clip.video.preview(resize_to_limit: [160, 120]).processed)), clip %>
|
|
</td>
|
|
<td>
|
|
<%= link_to clip.title, clip %>
|
|
</td>
|
|
<td>
|
|
<%= seconds_to_time(clip.video.metadata["duration"]) %>
|
|
</td>
|
|
<td>
|
|
<%= clip.category.name %>
|
|
</td>
|
|
<td>
|
|
<%= clip.updated_at %>
|
|
</td>
|
|
<td>
|
|
<%= clip.created_at %>
|
|
</td>
|
|
<td>
|
|
<% clip.tags.each_with_index do |tag, index| %>
|
|
<%= link_to tag.name, tag_path(tag) %><% if index < clip.tags.size - 1 %>, <% end %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|