OSDN Git Service

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