Sha256: 1da75226084bb0434ae423a8c45999e83f8c83c10f41086828cbef34c8c7cf18

Contents?: true

Size: 419 Bytes

Versions: 1

Compression:

Stored size: 419 Bytes

Contents

<h1>Listing authors</h1>

<table>
  <tr>
    <th>Name</th>
  </tr>

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

<br />

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails-services-0.1.5 test/rails_app_v2/app/views/authors/index.html.erb