OSDN Git Service

Merge branch 'v05dev' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v05
[pettanr/pettanr.git] / app / views / system_pictures / show.html.erb
1 <h1><%= t '.title' -%></h1>
2 <p id="notice"><%= notice %></p>
3
4 <%= link_to tag(:img, @system_picture.opt_img_tag), @system_picture.url %>
5
6 <p>
7   <b><%= t_m 'SystemPicture.ext' -%>:</b>
8   <%= @system_picture.ext %>
9 </p>
10
11 <p>
12   <b><%= t_m 'SystemPicture.width' -%>:</b>
13   <%= @system_picture.width %>
14 </p>
15
16 <p>
17   <b><%= t_m 'SystemPicture.height' -%>:</b>
18   <%= @system_picture.height %>
19 </p>
20
21 <p>
22   <b><%= t_m 'SystemPicture.filesize' -%>:</b>
23   <%= @system_picture.filesize %>
24 </p>
25
26 <p>
27   <b><%= t_m 'SystemPicture.md5' -%>:</b>
28   <%= h @system_picture.md5 %>
29 </p>
30
31 <p>
32   <b><%= t_m 'SystemPicture.created_at' -%>:</b>
33   <%= l @system_picture.created_at %>
34 </p>
35
36 <p>
37   <b><%= t_m 'SystemPicture.updated_at' -%>:</b>
38   <%= l @system_picture.updated_at %>
39 </p>
40
41 <%= link_to t('link.back'), system_pictures_path %>