OSDN Git Service

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