Sha256: a7d0d5f03c30493839621b61b714ec3ead5156601a21b9c19fae51f790eee327
Contents?: true
Size: 518 Bytes
Versions: 1
Compression:
Stored size: 518 Bytes
Contents
<h1>Listing entries</h1> <table> <tr> <th>Title</th> <th>Description</th> <th></th> <th></th> <th></th> </tr> <% @entries.each do |entry| %> <tr> <td><%= entry.title %></td> <td><%= entry.description %></td> <td><%= link_to 'Show', entry %></td> <td><%= link_to 'Edit', edit_entry_path(entry) %></td> <td><%= link_to 'Destroy', entry, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Entry', new_entry_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
test_app_as_gem-0.01 | app/views/entries/index.html.erb |