Sha256: b0c2a68691f5adff96ae339e6c1e78e54ee5f767921434df33338766a4234d42

Contents?: true

Size: 573 Bytes

Versions: 1

Compression:

Stored size: 573 Bytes

Contents

<h1>Listing companies</h1>

<table>
  <tr>
    <th>Name</th>
    <th>State</th>
    <th>Genre</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @companies.each do |company| %>
  <tr>
    <td><%= company.name %></td>
    <td><%= company.state %></td>
    <td><%= company.genre %></td>
    <td><%= link_to 'Show', company %></td>
    <td><%= link_to 'Edit', edit_company_path(company) %></td>
    <td><%= link_to 'Destroy', company, confirm: 'Are you sure?', method: :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Company', new_company_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
selections-0.0.1 spec/dummy/app/views/companies/index.html.erb