Sha256: e69b719aeafa9bbd339e6666bbdec13ccfab0eefc0eea9dc938b3f07b254086a

Contents?: true

Size: 623 Bytes

Versions: 2

Compression:

Stored size: 623 Bytes

Contents

<h1>Listing company_businesses</h1>

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

<% @company_businesses.each do |company_business| %>
  <tr>
    <td><%= company_business.name %></td>
    <td><%= company_business.enabled %></td>
    <td><%= link_to 'Show', company_business %></td>
    <td><%= link_to 'Edit', edit_company_business_path(company_business) %></td>
    <td><%= link_to 'Destroy', company_business, confirm: 'Are you sure?', method: :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Company business', new_company_business_path %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
guara-0.0.3 app/views/company_businesses/index.html.erb
guara-0.0.1.rc app/views/company_businesses/index.html.erb