OSDN Git Service

t#2334:add gc offset
[pettanr/pettanr.git] / app / views / ground_colors / show.html.erb
1 <h1><%= t('.title') %></h1>
2 <p id="notice"><%= notice %></p>
3
4 <%= render 'panel_pictures/standard', :panel => @ground_color.panel, :author => @author, :spot => @ground_color %>
5
6 <p>
7   <b><%= t_m 'GroundColor.caption' -%>:</b>
8   <%= h @ground_color.caption %>
9 </p>
10
11 <p>
12   <b><%= t_m 'GroundColor.orientation' -%>:</b>
13   <%= t_selected_item('ground_color_orientation_items', @ground_color.orientation) %>
14 </p>
15
16 <p>
17   <b><%= t_m 'GroundColor.xy' -%>:</b>
18   <%= @ground_color.xy %>
19 </p>
20
21 <p>
22   <b><%= t_m 'GroundColor.wh' -%>:</b>
23   <%= @ground_color.wh %>
24 </p>
25
26 <p>
27   <b><%= t_m 'GroundColor.z' -%>:</b>
28   <%= @ground_color.z %>
29 </p>
30
31 <p>
32   <b><%= t_m 'GroundColor.t' -%>:</b>
33   <%= @ground_color.t %>
34 </p>
35
36 <p>
37   <b><%= t_m 'GroundColor.code' -%>:</b>
38   <%= @ground_color.code %>
39 </p>
40
41 <p>
42   <b><%= t_m 'GroundColor.created_at' -%>:</b>
43   <%= l @ground_color.created_at %>
44 </p>
45
46 <p>
47   <b><%= t_m 'GroundColor.updated_at' -%>:</b>
48   <%= l @ground_color.updated_at %>
49 </p>
50
51 <%= link_to t('link.edit'), edit_ground_color_path(@ground_color) %>
52 <%= link_to t('link.destroy'), ground_color_path(@ground_color), :method => :delete %>
53
54 <%= render 'panels/element_copy', :element => @ground_color, :author => @author %>