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

8 lines
152 B
Plaintext
Raw Normal View History

2015-06-28 12:29:09 +00:00
<h1><%= @book.title %></h1>
2015-06-28 14:09:16 +00:00
<ul>
<% @book.authors.each do |author| %>
<li><%= author.name %></li>
<% end %>
</ul>
<p>Serie: <%= @book.serie.name %>