OSDN Git Service

aa712a3f0927c003412b926a04e02b33794eb104
[pettanr/pettanr.git] / app / views / comics / show.html.erb
1 <h1><%= t('.title') %></h1>
2 <p id="notice"><%= notice %></p>
3
4 <p>
5   <b><%= t_m 'Comic.title' -%>:</b>
6   <%= link_to h(@comic.title), :controller => 'stories', :action => :comic, :id => @comic.id %>
7 </p>
8
9 <p>
10   <b><%= t_m 'Comic.visible' -%>:</b>
11   <%= t_selected_item('comic_visible_items', @comic.visible) %>
12 </p>
13
14 <p>
15   <b><%= t_m 'Comic.author_id' -%>:</b>
16   <%= link_to h(@comic.author.name), author_path(@comic.author) %>
17 </p>
18
19 <p>
20   <b><%= t_m 'Comic.created_at' -%>:</b>
21   <%= l @comic.created_at %>
22 </p>
23
24 <p>
25   <b><%= t_m 'Comic.updated_at' -%>:</b>
26   <%= l @comic.updated_at %>
27 </p>
28
29 <%= link_to t('link.edit'), edit_comic_path(@comic) %>