OSDN Git Service

w
[pettanr/pettanr.git] / app / views / balloons / browse.html.erb
1 <h1><%= t '.title' -%></h1>
2 <p id="notice"><%= notice %></p>
3
4 <p>
5   <b><%= t_m 'Balloon.id' -%>:</b>
6   <%= @balloon.id %>
7 </p>
8
9 <p>
10   <b><%= t_m 'Balloon.speech_balloon_id' -%>:</b>
11   <%= link_to @balloon.speech_balloon_id, browse_speech_balloon_path(@balloon.speech_balloon) %>
12 </p>
13
14 <p>
15   <b><%= t_m 'Balloon.system_picture_id' -%>:</b>
16   <%= link_to tag(:img, @balloon.system_picture.tmb_opt_img_tag), browse_system_picture_path(@balloon.system_picture) %>
17 </p>
18
19 <p>
20   <b><%= t_m 'Balloon.x' -%>:</b>
21   <%= @balloon.x %>
22 </p>
23
24 <p>
25   <b><%= t_m 'Balloon.y' -%>:</b>
26   <%= @balloon.y %>
27 </p>
28
29 <p>
30   <b><%= t_m 'Balloon.width' -%>:</b>
31   <%= @balloon.width %>
32 </p>
33
34 <p>
35   <b><%= t_m 'Balloon.height' -%>:</b>
36   <%= @balloon.height %>
37 </p>
38
39 <p>
40   <b><%= t_m 'Balloon.r' -%>:</b>
41   <%= @balloon.r %>
42 </p>
43
44 <p>
45   <b><%= t_m 'Balloon.caption' -%>:</b>
46   <%= h @balloon.caption %>
47 </p>
48
49 <p>
50   <b><%= t_m 'Balloon.settings' -%>:</b>
51   <%= h @balloon.settings %>
52 </p>
53
54 <p>
55   <b><%= t_m 'Balloon.created_at' -%>:</b>
56   <%= l @balloon.created_at %>
57 </p>
58
59 <p>
60   <b><%= t_m 'Balloon.updated_at' -%>:</b>
61   <%= l @balloon.updated_at %>
62 </p>
63
64 <%= link_to t('link.back'), :action => :list %>