Sha256: af4892a51d8c48f6e2b692fade4dd734e4ca13ea1c55ebdb048037777fa8d06a
Contents?: true
Size: 498 Bytes
Versions: 2
Compression:
Stored size: 498 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Owners</h1> <table> <thead> <tr> <th colspan="3"></th> </tr> </thead> <tbody> <% @owners.each do |owner| %> <tr> <td><%= link_to 'Show', owner %></td> <td><%= link_to 'Edit', edit_owner_path(owner) %></td> <td><%= link_to 'Destroy', owner, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Owner', new_owner_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
datashift-0.40.1 | spec/dummy/app/views/owners/index.html.erb |
datashift-0.40.0 | spec/dummy/app/views/owners/index.html.erb |