Sha256: 6a3ba1cc0aa2927d164bf9aba98f481182c7ae3033ff020f2a84e5a0d0ce8f77

Contents?: true

Size: 686 Bytes

Versions: 2

Compression:

Stored size: 686 Bytes

Contents

<h1>Listing items</h1>

<table>
  <thead>
    <tr>
      <th>Title</th>
      <th>Text</th>
      <th>Category</th>
      <th>Image</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @items.each do |item| %>
      <tr>
        <td><%= item.title %></td>
        <td><%= item.text %></td>
        <td><%= item.category_id %></td>
        <td><%= item.image %></td>
        <td><%= link_to 'Show', item %></td>
        <td><%= link_to 'Edit', edit_item_path(item) %></td>
        <td><%= link_to 'Destroy', item, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Item', new_item_path %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
navinshop-0.0.2 app/views/navinshop/items/index.html.erb
navinshop-0.0.1 app/views/navinshop/items/index.html.erb