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

10 lines
158 B
Plaintext
Raw Normal View History

2015-06-29 16:58:02 +00:00
<%= will_paginate %>
<ul class="authors">
<% @authors.each do |author| %>
<li><%= link_to author.name, author %></li>
<% end %>
</ul>
<%= will_paginate %>