bouquins-ror/app/views/authors/_titles.html.erb
2015-07-05 20:31:36 +02:00

7 lines
130 B
Plaintext

<h2><%= pluralize(@books.count, "book") %></h2>
<ul>
<% @books.each do |b| %>
<li><%= link_to b.title, b %></li>
<% end %>
</ul>