OSDN Git Service

create author controller trying
[pettanr/pettanr.git] / app / views / authors / index.html.erb
1 <h1>Listing system_pictures</h1>
2
3 <table>
4   <tr>
5     <th>Ext</th>
6   </tr>
7
8 <% @authors.each do |author| %>
9   <tr>
10     <td><%= link_to h(author.name), :action => :show, :id => author.id %></td>
11   </tr>
12 <% end %>
13 </table>