33 lines
757 B
Plaintext
33 lines
757 B
Plaintext
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="page-header">
|
|
<h1>Listing Ingredients</h1>
|
|
</div>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Density</th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @ingredients.each do |ingredient| %>
|
|
<tr>
|
|
<td><%= link_to ingredient.name, edit_ingredient_path(ingredient) %></td>
|
|
<td><%= ingredient.density %></td>
|
|
<td><%= link_to 'Destroy', ingredient, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Ingredient', new_ingredient_path, class: 'btn btn-primary' %>
|
|
|
|
|
|
</div>
|
|
</div> |