bouquins-ror/app/views/authors/_titles.html.erb
2015-08-13 21:17:56 +02:00

7 lines
135 B
Plaintext

<h2><%= t(:author_book, count: @books.count) %></h2>
<ul>
<% @books.each do |b| %>
<li><%= link_to b.title, b %></li>
<% end %>
</ul>