Sha256: 39fa891e3670f3486d49b18d57146cb2fbc867e13a0f2484a7b73e38f953d424

Contents?: true

Size: 844 Bytes

Versions: 2

Compression:

Stored size: 844 Bytes

Contents

<h1>Listing business_activities</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_activities.each do |business_activity| %>
	  <tr>
	    <td><%= business_activity.name %></td>
	    <td><%= business_activity.enabled %></td>
	    <td><%= link_to 'Show', business_activity %></td>
	    <td><%= link_to 'Edit', edit_business_activity_path(business_activity) %></td>
	    <td><%= link_to 'Destroy', business_activity, confirm: 'Are you sure?', method: :delete %></td>
	  </tr>
	<% end %>
    </tbody>
  </table>
</section>

<br />

<%= link_to 'New Business activity', new_business_activity_path %>

Version data entries

2 entries across 2 versions & 1 rubygems

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