Title
Authors
Price
Quantity
<% @books.each do |book| %>
<%= book.title %>
<%= book.authors %>
<%= book.price_with_currency %>
<%= book.quantity %>
<% if can_book_be_added?(book) %> <%= link_to 'Add', "book/#{book.id}/add_to_cart", method: :post, class: "btn" %> <% end %>
<% if current_user&.admin? %>
<%= book.published ? 'published' : 'unpublished' %>
<%= link_to 'Edit', edit_book_path(book), class: "btn" %>
<% end %>
<% end %>