8 lines
152 B
Plaintext
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 %>
|