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

Version Path
sbdevcore-0.1.2 app/views/videos/index.html.erb
sbdevcore-0.1.1 app/views/videos/index.html.erb
sbdevcore-0.1.0 app/views/videos/index.html.erb
sbdevcore-0.0.9 app/views/videos/index.html.erb
sbdevcore-0.0.8 app/views/videos/index.html.erb
sbdevcore-0.0.7 app/views/videos/index.html.erb
sbdevcore-0.0.6 app/views/videos/index.html.erb
sbdevcore-0.0.5 app/views/videos/index.html.erb
sbdevcore-0.0.4 app/views/videos/index.html.erb
sbdevcore-0.0.3 app/views/videos/index.html.erb
sbdevcore-0.0.1 app/views/videos/index.html.erb
sbdev-core-0.0.1 app/views/videos/index.html.erb