misadventure/app/views/tapes/index.html.erb

28 lines
No EOL
578 B
Text

<h1>Tapes</h1>
<%= link_to "New tape", new_tape_path if authenticated? %>
<table id="tapes" border="1">
<tr>
<th>Preview</th>
<th>Title</th>
<th>Updated at</th>
<th>Created at</th>
</tr>
<% @tapes.each do |tape| %>
<tr>
<td>
<%= link_to (image_tag url_for(tape.video.preview(resize_to_limit: [160, 120]).processed)), tape %>
</td>
<td>
<%= link_to tape.title, tape %>
</td>
<td>
<%= tape.updated_at %>
</td>
<td>
<%= tape.created_at %>
</td>
</tr>
<% end %>
</div>