OSDN Git Service

t#30102:update i18n op rp au ar gc gp pc
[pettanr/pettanr.git] / app / views / artists / list.html.erb
1 <h1><%= t '.title' -%></h1>
2
3 <table>
4   <tr>
5     <th><%= t_m 'Artist.id' -%></th>
6     <th><%= t_m 'Artist.name' -%></th>
7     <th><%= t_m 'Artist.created_at' -%></th>
8     <th><%= t_m 'Artist.updated_at' -%></th>
9   </tr>
10
11   <% @artists.each do |artist| %>
12     <tr>
13       <td><%= link_to artist.id, browse_artist_path(artist) %></td>
14       <td><%= h(truncate(artist.name, :length => 12)) %></td>
15       <td><%= l artist.created_at %></td>
16       <td><%= l artist.updated_at %></td>
17     </tr>
18   <% end %>
19 </table>