Sha256: 3adf699c80cdf761921ece9e78fb3f320a60182df81da424c9c8242b66ef533f
Contents?: true
Size: 640 Bytes
Versions: 1
Compression:
Stored size: 640 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_code %></td> <td><%= order.status %></td> <td><a href="/campaigns/<%= order.campaign_id %>"><%= order.campaign.name %></a></td> </tr> <% end %> </tbody> </table> <p><a href="/">« Dashboard</a></p>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
printfection-1.0.1 | examples/web/views/orders.erb |