Title: <%= link_to @book.title, @book %>
Price: <%= @book.price_with_currency %>
Authors: <%= @book.authors %>
<% if current_user&.admin? %>
<%= link_to 'Edit', edit_book_path(@book), class: "btn" %>
<% end %>