Listing books

<% for book in @books %> <% end %>
Title Author
<%=h book.title %> <%=h book.author %> <%= link_to 'Show', book %> <%= link_to 'Edit', edit_book_path(book) %> <%= link_to 'Destroy', book, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New book', new_book_path %>