OSDN Git Service

w
[pettanr/pettanr.git] / app / views / authors / list.html.erb
1 <h1><%= t '.title' -%></h1>
2
3 <table>
4   <tr>
5     <th><%= t_m 'Author.id' -%></th>
6     <th><%= t_m 'Author.name' -%></th>
7     <th><%= t_m 'Author.created_at' -%></th>
8     <th><%= t_m 'Author.updated_at' -%></th>
9   </tr>
10
11   <% @authors.each do |author| %>
12     <tr>
13       <td><%= link_to author.id, browse_author_path(author) %></td>
14       <td><%= h(truncate(author.name, :length => 12)) %></td>
15       <td><%= l author.created_at %></td>
16       <td><%= l author.updated_at %></td>
17     </tr>
18   <% end %>
19 </table>