Sha256: 796cfb22c98fabe67ad8e1b14832a8ec902708eeb654228326c51578a52536cd
Contents?: true
Size: 418 Bytes
Versions: 12
Compression:
Stored size: 418 Bytes
Contents
<% title "Videos" %> <table> <tr> <th>Name</th> </tr> <% for video in @videos %> <tr> <td><%=h video.name %></td> <td><%= link_to "Show", video %></td> <td><%= link_to "Edit", edit_video_path(video) %></td> <td><%= link_to "Destroy", video, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <p><%= link_to "New Video", new_video_path %></p>
Version data entries
12 entries across 12 versions & 2 rubygems