Listing authors

<% @authors.each do |author| %> <% end %>
Name
<%=h author.name %> <%= link_to 'Show', author %> <%= link_to 'Edit', edit_author_path(author) %> <%= link_to 'Destroy', author, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New author', new_author_path %>