OSDN Git Service

w
[pettanr/pettanr.git] / app / views / system_pictures / index.html.erb
1 <h1><%= t '.title' -%></h1>
2
3 <table>
4   <tr>
5     <th></th>
6     <th><%= t_m 'SystemPicture.ext' -%></th>
7     <th><%= t_m 'SystemPicture.width' -%>x<%= t_m 'SystemPicture.height' -%></th>
8     <th><%= t_m 'SystemPicture.filesize' -%></th>
9   </tr>
10
11 <% @system_pictures.each do |system_picture| %>
12   <tr>
13     <td><%= link_to tag(:img, system_picture.tmb_opt_img_tag), system_picture.url %>(<%= link_to system_picture.id, system_picture_path(system_picture) %>)</td>
14     <td><%= h system_picture.ext %></td>
15     <td><%= system_picture.width %>x<%= system_picture.height %></td>
16     <td><%= system_picture.filesize %></td>
17   </tr>
18 <% end %>
19 </table>