Sha256: c99ba14d646c1fc79f317965c636c78296e54607469dd2fa0f067be1975e263c
Contents?: true
Size: 393 Bytes
Versions: 3
Compression:
Stored size: 393 Bytes
Contents
<h1>Listing items</h1> <table> <tr> <th></th> <th></th> <th></th> </tr> <% @items.each do |item| %> <tr> <td><%= link_to 'Show', item %></td> <td><%= link_to 'Edit', edit_item_path(item) %></td> <td><%= link_to 'Destroy', item, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Item', new_item_path %>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pushify-1.2.2 | demos/rails3/app/views/items/index.html.erb |
pushify-1.2.1 | demos/rails3/app/views/items/index.html.erb |
pushify-1.2.0 | demos/rails3/app/views/items/index.html.erb |