bookstore/app/views/books/show.html.erb

21 lines
441 B
Text
Raw Normal View History

2021-03-21 20:30:25 +01:00
<div class='container'>
<div class='row'>
<div class='col s4'>
Title: <%= link_to @book.title, @book %>
</div>
<div class='col s4'>
Price: <%= @book.price_with_currency %>
</div>
<div class='col s4'>
Authors: <%= @book.authors %>
</div>
</div>
<% if current_user&.admin? %>
<div class='row'>
<%= link_to 'Edit', edit_book_path(@book), class: "btn" %>
</div>
<% end %>
</div>