bouquins-ror/app/views/books/show.html.erb

8 lines
152 B
Plaintext

<h1><%= @book.title %></h1>
<ul>
<% @book.authors.each do |author| %>
<li><%= author.name %></li>
<% end %>
</ul>
<p>Serie: <%= @book.serie.name %>