bouquins-ror/app/views/authors/_titles.html.erb

7 lines
135 B
Plaintext
Raw Normal View History

2015-08-13 19:17:56 +00:00
<h2><%= t(:author_book, count: @books.count) %></h2>
2015-07-05 18:31:36 +00:00
<ul>
<% @books.each do |b| %>
<li><%= link_to b.title, b %></li>
<% end %>
</ul>