OSDN Git Service

temp
[pettanr/pettanr.git] / app / views / authors / show.html.erb
1 <% @page_title = t('.title') + ':' + @author.name %>
2 <h1><%= t '.title' -%></h1>
3 <p id="notice"><%= notice %></p>
4
5 <p>
6   <b><%= t_m 'Author.name' -%>:</b>
7   <%= h @author.name %>
8 </p>
9
10 <p>
11   <b><%= t_m 'Author.created_at' -%>:</b>
12   <%= l @author.created_at %>
13 </p>
14
15 <p>
16   <b><%= t_m 'Author.updated_at' -%>:</b>
17   <%= l @author.updated_at %>
18 </p>
19
20 <p>
21   <%= link_to t('authors.show.to_scrolls'), scrolls_author_path(@author) %>
22 </p>
23
24 <p>
25   <%= link_to t('authors.show.to_scroll_panels'), scroll_panels_author_path(@author) %>
26 </p>
27
28 <p>
29   <%= link_to t('authors.show.to_comics'), comics_author_path(@author) %>
30 </p>
31
32 <p>
33   <%= link_to t('authors.show.to_stories'), stories_author_path(@author) %>
34 </p>
35
36 <p>
37   <%= link_to t('authors.show.to_story_sheets'), story_sheets_author_path(@author) %>
38 </p>
39
40 <p>
41   <%= link_to t('authors.show.to_sheets'), sheets_author_path(@author) %>
42 </p>
43
44 <p>
45   <%= link_to t('authors.show.to_sheet_panels'), sheet_panels_author_path(@author) %>
46 </p>
47
48 <p>
49   <%= link_to t('authors.show.to_panels'), panels_author_path(@author) %>
50 </p>
51
52 <p>
53   <%= link_to t('authors.show.to_panel_pictures'), panel_pictures_author_path(@author) %>
54 </p>
55
56 <p>
57   <%= link_to t('authors.show.to_speech_balloons'), speech_balloons_author_path(@author) %>
58 </p>
59
60 <p>
61   <%= link_to t('authors.show.to_ground_pictures'), ground_pictures_author_path(@author) %>
62 </p>
63
64 <p>
65   <%= link_to t('authors.show.to_ground_colors'), ground_colors_author_path(@author) %>
66 </p>
67
68 <% if @author.own?(@author) %>
69   <%= link_to t('link.edit'), edit_author_path(@author) %>
70 <% end %>