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

37 lines
997 B
Plaintext

<h1>Listing campaigns</h1>
<table class="table table-striped">
<thead>
<tr>
<th>Client ID</th>
<th>Listing Code</th>
<th>Address</th>
<th>City</th>
<th>State</th>
<th>ZIP</th>
<th>Processed?</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @campaigns.each do |campaign| %>
<tr>
<td><%= link_to campaign.clientid, campaign_path(campaign.clientid) %></td>
<td><%= campaign.listingcode %></td>
<td><%= campaign.address1 %></td>
<td><%= campaign.city %></td>
<td><%= campaign.state %></td>
<td><%= campaign.zip %></td>
<td><%= campaign.processed? %></td>
<td><%= link_to 'Edit', edit_campaign_path(campaign.clientid) %></td>
<td><%= link_to 'Destroy', campaign_path(campaign.clientid), method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Campaign', new_campaign_path %>