OSDN Git Service

import all source code
[pettanr/pettanr.git] / app / views / artists / index.html.erb
1 <h1>Listing artists</h1>
2
3 <table>
4   <tr>
5     <th>author</th>
6     <th>name</th>
7     <th></th>
8   </tr>
9
10 <% @artists.each do |artist| %>
11   <tr>
12     <td><%= artist.author_id %></td>
13     <td><%= artist.name %></td>
14     <td><%= link_to 'Show', artist %></td>
15   </tr>
16 <% end %>
17 </table>