OSDN Git Service

05a67a1cd91ce65403e7465e6f9a7f6fc4002861
[pettanr/pettanr.git] / app / views / resource_pictures / index.html.erb
1 <h1>Listing resource_pictures</h1>
2
3 <table>
4   <tr>
5     <th>Ext</th>
6     <th>Width</th>
7     <th>Height</th>
8     <th>filesize</th>
9   </tr>
10
11 <% @resource_pictures.each do |resource_picture| %>
12   <tr>
13     <td><%= resource_picture.ext %></td>
14     <td><%= resource_picture.width %></td>
15     <td><%= resource_picture.height %></td>
16     <td><%= resource_picture.filesize %></td>
17     <td>
18       <%= link_to 'show', resource_picture %>
19     </td>
20   </tr>
21 <% end %>
22 </table>