Sha256: 8e760fabd0ce304d05b99597002cd1fa1ba055e4cf3b2eed97ea0aa8e77a01c2
Contents?: true
Size: 790 Bytes
Versions: 17
Compression:
Stored size: 790 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Campaigns</h1> <table> <thead> <tr> <th>Name</th> <th>Advertiser</th> <th>Description</th> <th>Weight</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @campaigns.each do |campaign| %> <tr> <td><%= campaign.name %></td> <td><%= campaign.advertiser_id %></td> <td><%= campaign.description %></td> <td><%= campaign.weight %></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 %>
Version data entries
17 entries across 17 versions & 1 rubygems