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

18 lines
331 B
Text
Raw Normal View History

2021-03-19 17:31:38 +02:00
<div class='container'>
<% @books.each do |book| %>
<div class='row'>
<div class='col s4'>
Title: <%= book.title %>
</div>
<div class='col s4'>
Price: <%= book.price %>
</div>
<div class='col s4'>
Authors: <%= book.authors %>
</div>
</div>
<% end %>
</div>