OSDN Git Service

Merge branch 'v06' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v06
[pettanr/pettanr.git] / app / views / speech_balloons / show.html.erb
1 <h1><%= t('.title') %></h1>
2 <p id="notice"><%= notice %></p>
3
4 <%= render 'speech_balloons/standard', :panel => @speech_balloon.panel, :operators => @operators, :spot => @speech_balloon %>
5
6 <p>
7   <b><%= t_m 'SpeechBalloon.caption' -%>:</b>
8   <%= h @speech_balloon.caption %>
9 </p>
10
11 <p>
12   <b><%= t_m 'SpeechBalloon.speech_balloon_template_id' -%>:</b>
13   <%= link_to h(@speech_balloon.speech_balloon_template.caption), @speech_balloon.speech_balloon_template %>
14 </p>
15
16 <p>
17   <b><%= t_m 'SpeechBalloon.classname' -%>:</b>
18   <%= @speech_balloon.classname %>
19 </p>
20
21 <p>
22   <b><%= t_m 'SpeechBalloon.z' -%>:</b>
23   <%= @speech_balloon.z %>
24 </p>
25
26 <p>
27   <b><%= t_m 'SpeechBalloon.t' -%>:</b>
28   <%= @speech_balloon.t %>
29 </p>
30
31 <% if @speech_balloon.balloon %>
32   <p>
33     <b><%= t_m 'Balloon.x' -%>:</b>
34     <%= @speech_balloon.balloon.x %>
35   </p>
36
37   <p>
38     <b><%= t_m 'Balloon.y' -%>:</b>
39     <%= @speech_balloon.balloon.y %>
40   </p>
41
42   <p>
43     <b><%= t_m 'Balloon.width' -%>:</b>
44     <%= @speech_balloon.balloon.width %>
45   </p>
46
47   <p>
48     <b><%= t_m 'Balloon.height' -%>:</b>
49     <%= @speech_balloon.balloon.height %>
50   </p>
51
52   <p>
53     <b><%= t_m 'Balloon.r' -%>:</b>
54     <%= @speech_balloon.balloon.r %>
55   </p>
56 <% end %>
57
58 <% if @speech_balloon.speech %>
59   <p>
60     <b><%= t_m 'Speech.content' -%>:</b>
61     <%= @speech_balloon.speech.content %>
62   </p>
63
64   <p>
65     <b><%= t_m 'Speech.x' -%>:</b>
66     <%= @speech_balloon.speech.x %>
67   </p>
68
69   <p>
70     <b><%= t_m 'Speech.y' -%>:</b>
71     <%= @speech_balloon.speech.y %>
72   </p>
73
74   <p>
75     <b><%= t_m 'Speech.width' -%>:</b>
76     <%= @speech_balloon.speech.width %>
77   </p>
78
79   <p>
80     <b><%= t_m 'Speech.height' -%>:</b>
81     <%= @speech_balloon.speech.height %>
82   </p>
83 <% end %>
84
85 <p>
86   <b><%= t_m 'SpeechBalloon.created_at' -%>:</b>
87   <%= l @speech_balloon.created_at %>
88 </p>
89
90 <p>
91   <b><%= t_m 'SpeechBalloon.updated_at' -%>:</b>
92   <%= l @speech_balloon.updated_at %>
93 </p>
94
95 <%= link_to t('link.edit'), edit_speech_balloon_path(@speech_balloon) %>
96 <%= link_to t('link.destroy'), speech_balloon_path(@speech_balloon), :method => :delete %>
97
98 <%= render 'panels/element_copy', :element => @speech_balloon, :operators => @operators %>