OSDN Git Service

t#30102#30122:update i18n pictures
[pettanr/pettanr.git] / app / views / pictures / browse.html.erb
1 <h1><%= t '.title' -%></h1>
2 <p id="notice"><%= notice %></p>
3
4 <%= link_to tag(:img, @picture.opt_img_tag), @picture.url %>
5 <p>
6   <b><%= t_m 'Picture.id' -%>:</b>
7   <%= @picture.id %>
8 </p>
9
10 <p>
11   <b><%= t_m 'Picture.original_picture_id' -%>:</b>
12   <%= link_to @picture.original_picture_id, browse_original_picture_path(@picture.original_picture) %>
13 </p>
14
15 <p>
16   <b><%= t_m 'Picture.revision' -%>:</b>
17   <%= @picture.revision %>
18 </p>
19
20 <p>
21   <b><%= t_m 'Picture.ext' -%>:</b>
22   <%= @picture.ext %>
23 </p>
24
25 <p>
26   <b><%= t_m 'Picture.width' -%>:</b>
27   <%= @picture.width %>
28 </p>
29
30 <p>
31   <b><%= t_m 'Picture.height' -%>:</b>
32   <%= @picture.height %>
33 </p>
34
35 <p>
36   <b><%= t_m 'Picture.filesize' -%>:</b>
37   <%= @picture.filesize %>
38 </p>
39
40 <p>
41   <b><%= t_m 'Picture.md5' -%>:</b>
42   <%= @picture.md5 %>
43 </p>
44
45 <p>
46   <b><%= t_m 'Picture.license_id' -%>:</b>
47   <%= link_to @picture.license_id, browse_license_path(@picture.license) %>
48 </p>
49
50 <p>
51   <b><%= t_m 'Picture.artist_id' -%>:</b>
52   <%= link_to @picture.artist_id, browse_artist_path(@picture.artist) %>
53 </p>
54
55 <p>
56   <b><%= t_m 'Picture.artist_name' -%>:</b>
57   <%= h @picture.artist_name %>
58 </p>
59
60 <p>
61   <b><%= t_m 'Picture.classname' -%>:</b>
62   <%= h @picture.classname %>
63 </p>
64
65 <p>
66   <b><%= t_m 'Picture.credit' -%>:</b>
67   <%= h @picture.credit %>
68 </p>
69
70 <p>
71   <b><%= t_m 'Picture.settings' -%>:</b>
72   <%= h @picture.settings %>
73 </p>
74
75 <p>
76   <b><%= t_m 'Picture.created_at' -%>:</b>
77   <%= @picture.created_at %>
78 </p>
79
80 <p>
81   <b><%= t_m 'Picture.updated_at' -%>:</b>
82   <%= @picture.updated_at %>
83 </p>
84
85  %= link_to t('link.back'), :action => :list %>