Sha256: 982ae7b307fc846c1af7f8195a8abbab1d34a09d59d3343c36884a9e25faddb8
Contents?: true
Size: 465 Bytes
Versions: 1
Compression:
Stored size: 465 Bytes
Contents
<h1>Listing authors</h1> <table> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> <% @authors.each do |author| %> <tr> <td><%= author.name %></td> <td><%= link_to 'Show', author %></td> <td><%= link_to 'Edit', edit_author_path(author) %></td> <td><%= link_to 'Destroy', author, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Author', new_author_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
r_decorator-0.0.6 | spec/dummy/app/views/authors/index.html.erb |