misadventure/app/views/home/index.html.erb
2026-01-30 02:21:12 +00:00

21 lines
No EOL
638 B
Text

<h2>Recently Updated</h2>
<table id="clips" border="1">
<tr>
<th>Preview</th>
<th>Title</th>
<th>Category</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><%= link_to clip.category.name, clip.category %></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>