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

19 lines
424 B
Plaintext
Raw Normal View History

<%= render 'layouts/initials' %>
2015-06-29 17:51:55 +00:00
<%= will_paginate class: "center" %>
2015-06-29 16:58:02 +00:00
2015-06-29 17:51:55 +00:00
<table class="table table-striped authors">
<tr>
<th>Name</th>
<th>Books</th>
</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>
2015-06-29 16:58:02 +00:00
2015-06-29 17:51:55 +00:00
<%= will_paginate class: "center" %>
<%= render 'layouts/perpage' %>