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

38 lines
889 B
Plaintext
Raw Normal View History

2014-04-07 18:41:34 +00:00
<h1>Listing campaigns</h1>
<table>
<thead>
<tr>
<th>Clientid</th>
<th>Listingcode</th>
<th>Address1</th>
<th>City</th>
<th>State</th>
<th>Zip</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @campaigns.each do |campaign| %>
<tr>
<td><%= campaign.clientid %></td>
<td><%= campaign.listingcode %></td>
<td><%= campaign.address1 %></td>
<td><%= campaign.city %></td>
<td><%= campaign.state %></td>
<td><%= campaign.zip %></td>
<td><%= link_to 'Show', campaign %></td>
<td><%= link_to 'Edit', edit_campaign_path(campaign) %></td>
<td><%= link_to 'Destroy', campaign, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Campaign', new_campaign_path %>