Sha256: 24e9bdf37441e30940cd3ce5a9d5bae4f558e20ab26d25341c7eab5cc4e0f069

Contents?: true

Size: 635 Bytes

Versions: 2

Compression:

Stored size: 635 Bytes

Contents

<h1>Orders</h1>

<table class="table">
  <thead>
    <tr>
      <th>ID</th>
      <th>Ship To</th>
      <th>Status</th>
      <th>Campaign</th>
    </tr>
  </thead>
  <tbody>
    <% @orders.each do |order| %>
      <tr>
        <td><a href="/orders/<%= order.id %>"><%= order.id %></a></td>
        <td><%= order.ship_to.name %>, <%= order.ship_to.city %>, <%= order.ship_to.state %> <%= order.ship_to.zip %></td>
        <td><%= order.status %></td>
        <td><a href="/campaigns/<%= order.campaign_id %>"><%= order.campaign.name %></a></td>
      </tr>
    <% end %>
  </tbody>
</table>

<p><a href="/">&laquo; Dashboard</a></p>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
printfection-1.0.3 examples/web/views/orders.erb
printfection-1.0.2 examples/web/views/orders.erb