index.html.erb 749 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<h4>Admin Bags</h4>>

<h1>Bags</h1>
<p>Lift your Burdens upon me</p>

<%= link_to("New Bag", new_admin_bag_path) %>

<table width="100%" >
  <tr>
    <th align="center">Name</th>
    <th align="center">Designer_Type</th>
    <th align="center">Bag_Size</th>
    <th>Actions</th>
  </tr>
  <% @bags.each do |bag| %>
    <tr>
      <td align="center"><%= bag.name %></td>
      <td align="center"><%= bag.designer_type %></td>
      <td align="center"><%= bag.bag_Size %></td>
      <td>
        <%= link_to "Show",admin_bag_path(bag.id) %>
        <%= link_to "Edit",edit_admin_bag_path(bag.id) %>
        <%= link_to "Delete", admin_bag_path(bag.id), method: :delete, data: { confirm: 'Are you sure?' } %>
      </td>
    </tr>
  <% end %>
</table>