bouquins-ror/app/views/authors/_index.html.erb
2015-08-03 11:54:44 +02:00

17 lines
388 B
Plaintext

<%= render'layouts/filter' %>
<%= will_paginate class: "center" %>
<table class="table table-striped authors">
<tr>
<th>Name</th>
<th>Books</th>
</tr>
<% @authors.each do |author| %>
<tr>
<td><span class="glyphicon glyphicon-user"></span><%= link_to author.name, author %></td>
<td><%= author.books.count %></td>
</tr>
<% end %>
</table>
<%= will_paginate class: "center" %>