Sha256: 5c0b92539b8981cf9e66a47c56d16caa192f729f1ae124fa03ac506273f86101

Contents?: true

Size: 882 Bytes

Versions: 2

Compression:

Stored size: 882 Bytes

Contents

<h1>Listing shipments</h1>

<table>
  <thead>
    <tr>
      <th>Order line</th>
      <th>Shipping date</th>
      <th>Shipping quantity</th>
      <th>Arriving date</th>
      <th>Status</th>
      <th></th>
      <th></th>
      <th></th>
    </tr>
  </thead>

  <tbody>
    <% @shipments.each do |shipment| %>
      <tr>
        <td><%= shipment.order_line_id %></td>
        <td><%= shipment.shipping_date %></td>
        <td><%= shipment.shipping_quantity %></td>
        <td><%= shipment.arriving_date %></td>
        <td><%= shipment.status %></td>
        <td><%= link_to 'Show', shipment %></td>
        <td><%= link_to 'Edit', edit_shipment_path(shipment) %></td>
        <td><%= link_to 'Destroy', shipment, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Shipment', new_shipment_path %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ext_form-0.1.5 spec/dummy/app/views/shipments/index.html.erb
ext_form-0.1.4 spec/dummy/app/views/shipments/index.html.erb