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

12 lines
176 B
Plaintext
Raw Normal View History

2015-06-28 15:14:47 +00:00
<h1>Authors</h1>
<%= will_paginate %>
<ul class="authors">
<% @authors.each do |author| %>
<li><%= link_to author.name, author %></li>
<% end %>
</ul>
<%= will_paginate %>