OSDN Git Service

t#31671:add elm copy
[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, :author => @author, :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 <p>
32   <b><%= t_m 'Balloon.x' -%>:</b>
33   <%= @speech_balloon.balloon.x %>
34 </p>
35
36 <p>
37   <b><%= t_m 'Balloon.y' -%>:</b>
38   <%= @speech_balloon.balloon.y %>
39 </p>
40
41 <p>
42   <b><%= t_m 'Balloon.width' -%>:</b>
43   <%= @speech_balloon.balloon.width %>
44 </p>
45
46 <p>
47   <b><%= t_m 'Balloon.height' -%>:</b>
48   <%= @speech_balloon.balloon.height %>
49 </p>
50
51 <p>
52   <b><%= t_m 'Balloon.r' -%>:</b>
53   <%= @speech_balloon.balloon.r %>
54 </p>
55
56 <p>
57   <b><%= t_m 'Speech.content' -%>:</b>
58   <%= @speech_balloon.speech.content %>
59 </p>
60
61 <p>
62   <b><%= t_m 'Speech.x' -%>:</b>
63   <%= @speech_balloon.speech.x %>
64 </p>
65
66 <p>
67   <b><%= t_m 'Speech.y' -%>:</b>
68   <%= @speech_balloon.speech.y %>
69 </p>
70
71 <p>
72   <b><%= t_m 'Speech.width' -%>:</b>
73   <%= @speech_balloon.speech.width %>
74 </p>
75
76 <p>
77   <b><%= t_m 'Speech.height' -%>:</b>
78   <%= @speech_balloon.speech.height %>
79 </p>
80
81 <p>
82   <b><%= t_m 'SpeechBalloon.created_at' -%>:</b>
83   <%= l @speech_balloon.created_at %>
84 </p>
85
86 <p>
87   <b><%= t_m 'SpeechBalloon.updated_at' -%>:</b>
88   <%= l @speech_balloon.updated_at %>
89 </p>
90
91 <%= link_to t('link.edit'), edit_speech_balloon_path(@speech_balloon) %>
92 <%= link_to t('link.destroy'), speech_balloon_path(@speech_balloon), :method => :delete %>
93
94 <%= render 'copy', :speech_balloon => @speech_balloon, :author => @author %>