OSDN Git Service

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