Id
<%= @book.id %>
Title
<%= @book.title %>
Author
<%= @book.author %>
Price
<%= number_to_currency(@book.price_cents / 100.0) %>
Quantity
<%= @book.quantity %>
Description
<%= @book.description %>

Number of reviews: <%= @book.reviews.count %>

<% if session[:user_id].present? %> <%= link_to "Edit book", edit_book_path(@book), class: "button" %> <%= link_to "Add a Review", new_book_review_path(@book), class: "button" %> <%= button_to "Delete book", book_path(@book), method: :delete, class: "button danger" %> <% end %>