vidpush/app/views/campaigns/index.html.erb

37 lines
1.2 KiB
Plaintext
Raw Normal View History

2014-04-25 01:32:32 +00:00
<div class="container">
<section>
2014-04-25 02:02:21 +00:00
<h1>Campaigns</h1>
<hr>
2014-04-25 01:32:32 +00:00
<table class="table table-striped">
<thead>
<tr>
<th>Listing Code (Form Hash)</th>
<th>Processed?</th>
<th>Billing Code</th>
<th>Address</th>
<th>City</th>
<th>State</th>
<th>ZIP</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @campaigns.each do |campaign| %>
<tr>
<td><%= link_to campaign.listingcode, campaign_path(campaign.listingcode) %></td>
<td><i class="glyphicon glyphicon-<% if campaign.processed? %>ok<% else %>remove<% end %>"></i> </td>
<td><%= campaign.billingcode %></td>
<td><%= campaign.address %></td>
<td><%= campaign.city %></td>
<td><%= campaign.state %></td>
<td><%= campaign.zip %></td>
<td><%= link_to 'Edit', edit_campaign_path(campaign.listingcode) %></td>
<td><%= link_to 'Destroy', campaign_path(campaign.listingcode), method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<%= link_to 'New Campaign', new_campaign_path %>
2014-04-25 01:32:32 +00:00
</section>
</div>