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

17 lines
434 B
Plaintext
Raw Normal View History

2015-08-03 09:54:44 +00:00
<%= render'layouts/filter' %>
2015-06-29 16:58:02 +00:00
2015-08-03 09:54:44 +00:00
<%= will_paginate class: "center" %>
2015-06-29 17:51:55 +00:00
<table class="table table-striped authors">
<tr>
2015-08-13 19:17:56 +00:00
<th><%= t :col_author_name %></th>
<th><%= t :col_author_books %></th>
2015-06-29 17:51:55 +00:00
</tr>
2015-06-29 16:58:02 +00:00
<% @authors.each do |author| %>
2015-06-29 17:51:55 +00:00
<tr>
<td><span class="glyphicon glyphicon-user"></span><%= link_to author.name, author %></td>
<td><%= author.books.count %></td>
</tr>
2015-06-29 16:58:02 +00:00
<% end %>
2015-06-29 17:51:55 +00:00
</table>
<%= will_paginate class: "center" %>