bouquins-ror/app/views/authors/index.html.erb
2015-06-28 17:14:47 +02:00

12 lines
176 B
Plaintext

<h1>Authors</h1>
<%= will_paginate %>
<ul class="authors">
<% @authors.each do |author| %>
<li><%= link_to author.name, author %></li>
<% end %>
</ul>
<%= will_paginate %>