OSDN Git Service

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