Sha256: 3e0b8e95376fe544e19c7096010a458b5f4adef6e2910fcf95eedee6bf740876
Contents?: true
Size: 611 Bytes
Versions: 4
Compression:
Stored size: 611 Bytes
Contents
<p style="color: green"><%= notice %></p> <h1>Companies</h1> <div id="companies"> <table> <thead> <tr> <th>Name</th> <th>Slug</th> <th>Active</th> <th>Region</th> </tr> </thead> <tbody> <% @companies.each do |company| %> <tr> <td><%= company.name %></td> <td><%= company.slug %></td> <td><%= company.active %></td> <td><%= company.region&.name %></td> <td><%= link_to "Show", company %></td> </tr> <% end %> </tbody> </table> </div> <%= link_to "New company", new_company_path %>
Version data entries
4 entries across 4 versions & 1 rubygems