Sha256: 5d9a012d40a64db4796553b9a5dd6d3ae7ec572e00ccccf76ad4c990b20bdcd5
Contents?: true
Size: 481 Bytes
Versions: 2
Compression:
Stored size: 481 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Books</h1> <table> <thead> <tr> <th colspan="3"></th> </tr> </thead> <tbody> <% @books.each do |book| %> <tr> <td><%= link_to 'Show', book %></td> <td><%= link_to 'Edit', edit_book_path(book) %></td> <td><%= link_to 'Destroy', book, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Book', new_book_path %>
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
sandboxy-2.0.0 | examples/rails_example/app/views/books/index.html.erb |
omniauth-slooob-1.0.0 | examples/rails_example/app/views/books/index.html.erb |