Sha256: 87aa544d5eb2164c5e79213e796b5fccf0bb42f503e0e4960162226d7206d77f
Contents?: true
Size: 841 Bytes
Versions: 2
Compression:
Stored size: 841 Bytes
Contents
<h1><%= t("business_segments.title") %></h1> <section id="buttons"> <div class="page-header wehll"> <%= t("search.results")%> </div> <table class="table table-bordered table-striped"> <thead> <tr> <th>Name</th> <th>Disable</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @business_segments.each do |business_segment| %> <tr> <td><%= business_segment.name %></td> <td><%= business_segment.enabled %></td> <td><%= link_to 'Show', business_segment %></td> <td><%= link_to 'Edit', edit_business_segment_path(business_segment) %></td> <td><%= link_to 'Destroy', business_segment, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </tbody> </table> </section> <br /> <%= link_to 'New Business segment', new_business_segment_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
guara-0.0.3 | app/views/business_segments/index.html.erb |
guara-0.0.1.rc | app/views/business_segments/index.html.erb |