OSDN Git Service

w
[pettanr/pettanr.git] / app / views / scrolls / browse.html.erb
1 <h1><%= t '.title' -%></h1>
2 <p>
3   <b><%= t_m 'Scroll.id' -%>:</b>
4   <%= h @scroll.id %>
5 </p>
6
7 <p>
8   <b><%= t_m 'Scroll.title' -%>:</b>
9   <%= h @scroll.title %>
10 </p>
11
12 <p>
13   <b><%= t_m 'Scroll.visible' -%>:</b>
14   <%= @scroll.visible %>
15   <%= t_selected_item('scroll_visible_items', @scroll.visible) %>
16 </p>
17
18 <p>
19   <b><%= t_m 'Scroll.author_id' -%>:</b>
20   <%= @scroll.author_id %>
21   <%= link_to h(@scroll.author.name), browse_author_path(@scroll.author) %>
22 </p>
23
24 <p>
25   <b><%= t_m 'Scroll.created_at' -%>:</b>
26   <%= l @scroll.created_at %>
27 </p>
28
29 <p>
30   <b><%= t_m 'Scroll.updated_at' -%>:</b>
31   <%= l @scroll.updated_at %>
32 </p>
33
34 <%= link_to t('link.back'), :action => :list %>