Sha256: 995be175b63928bb7d3ab9799adf1f7b306ffda0969b67ecca3b0e77a4ed9440
Contents?: true
Size: 575 Bytes
Versions: 2
Compression:
Stored size: 575 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Companies</h1> <table> <thead> <tr> <th>Name</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @companies.each do |company| %> <tr> <td><%= company.name %></td> <td><%= link_to 'Show', company %></td> <td><%= link_to 'Edit', edit_company_path(company) %></td> <td><%= link_to 'Destroy', company, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Company', new_company_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
susply-1.0.0 | spec/dummy/app/views/companies/index.html.erb |
susply-0.0.2 | spec/dummy/app/views/companies/index.html.erb |