OSDN Git Service

t#31671:add elm copy
[pettanr/pettanr.git] / app / views / ground_pictures / show.html.erb
1 <h1><%= t('.title') %></h1>
2 <p id="notice"><%= notice %></p>
3
4 <%= render 'panel_pictures/standard', :panel => @ground_picture.panel, :author => @author, :spot => @ground_picture %>
5
6 <p>
7   <b><%= t_m 'GroundPicture.caption' -%>:</b>
8   <%= h @ground_picture.caption %>
9 </p>
10
11 <p>
12   <b><%= t_m 'GroundPicture.z' -%>:</b>
13   <%= @ground_picture.z %>
14 </p>
15
16 <p>
17   <b><%= t_m 'GroundPicture.repeat' -%>:</b>
18   <%= @ground_picture.repeat %>
19 </p>
20
21 <p>
22   <b><%= t_m 'GroundPicture.x' -%>:</b>
23   <%= @ground_picture.x %>
24 </p>
25
26 <p>
27   <b><%= t_m 'GroundPicture.y' -%>:</b>
28   <%= @ground_picture.y %>
29 </p>
30
31 <p>
32   <b><%= t_m 'GroundPicture.created_at' -%>:</b>
33   <%= l @ground_picture.created_at %>
34 </p>
35
36 <p>
37   <b><%= t_m 'GroundPicture.updated_at' -%>:</b>
38   <%= l @ground_picture.updated_at %>
39 </p>
40
41 <%= link_to t('link.edit'), edit_ground_picture_path(@ground_picture) %>
42 <%= link_to t('link.destroy'), ground_picture_path(@ground_picture), :method => :delete %>
43
44 <%= render 'copy', :ground_picture => @ground_picture, :author => @author %>