OSDN Git Service

t#30009:fix views
[pettanr/pettanr.git] / app / views / comics / show.html.erb
1 <h1>コミックの表示</h1>
2 <p id="notice"><%= notice %></p>
3
4 <p>
5   <b>Title:</b>
6   <%= link_to h(@comic.title), :controller => 'stories', :action => :comic, :id => @comic.id %>
7 </p>
8
9 <p>
10   <b>visible:</b>
11   <%= @comic.visible %>
12 </p>
13
14 <p>
15   <b>author:</b>
16   <%= link_to h(@comic.author.name), author_path(@comic.author) %>
17 </p>
18
19 <p>
20   <b>updated_at:</b>
21   <%= @comic.updated_at %>
22 </p>
23
24 <%= link_to 'edit', edit_comic_path(@comic) %>
25
26 <%= link_to 'Back', comics_path %>