Sha256: c3e8a548df1c69bdb4576dc10f1f6e5c0b44335a0de7e9f0e9d7c7d8ea0c6a3b
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
<h1>Campaigns</h1> <table class="table"> <thead> <tr> <th>ID</th> <th>Name</th> <th>Type</th> <th>Active</th> </tr> </thead> <tbody> <% @campaigns.each do |campaign| %> <tr> <td><a href="/campaigns/<%= campaign.id %>"><%= campaign.id %></a></td> <td><%= campaign.name %></td> <td><%= campaign.type %></td> <td><%= campaign.active %></td> </tr> <% end %> </tbody> </table> <br /><br /> <h1>Recent 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="/orders">All orders »</a></p>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
printfection-1.0.3 | examples/web/views/dashboard.erb |
printfection-1.0.2 | examples/web/views/dashboard.erb |