OSDN Git Service

t#31470:create pager
[pettanr/pettanr.git] / app / views / resource_pictures / index.html.erb
1 <h1><%= t '.title' -%></h1>
2 <table>
3   <tr>
4     <th></th>
5     <th></th>
6     <th><%= t_m 'ResourcePicture.artist_id' -%></th>
7     <th><%= t_m 'ResourcePicture.ext' -%></th>
8     <th><%= t_m 'ResourcePicture.width' -%></th>
9     <th><%= t_m 'ResourcePicture.height' -%></th>
10     <th><%= t_m 'ResourcePicture.filesize' -%></th>
11   </tr>
12
13   <% @resource_pictures.each do |resource_picture| %>
14     <%= render 'list_item', :resource_picture => resource_picture %>
15   <% end %>
16 </table>
17 <%= paginate(@paginate) %>