Sha256: b40baa0dfa5a128fe53799c60c3c73fa7c19cf16880263958d1ddf52c1d91e4e
Contents?: true
Size: 452 Bytes
Versions: 4
Compression:
Stored size: 452 Bytes
Contents
<h1>Listing books</h1> <table> <tr> <th>Title</th> <th>Author</th> </tr> <% for book in @books %> <tr> <td><%=h book.title %></td> <td><%=h book.author %></td> <td><%= link_to 'Show', book %></td> <td><%= link_to 'Edit', edit_book_path(book) %></td> <td><%= link_to 'Destroy', book, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New book', new_book_path %>
Version data entries
4 entries across 4 versions & 1 rubygems