bouquins-ror/app/views/authors/_index.html.erb
2015-08-13 21:17:56 +02:00

17 lines
434 B
Plaintext

<%= render'layouts/filter' %>
<%= will_paginate class: "center" %>
<table class="table table-striped authors">
<tr>
<th><%= t :col_author_name %></th>
<th><%= t :col_author_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" %>