fix div and section in application
This commit is contained in:
parent
18d1893069
commit
279501bfe0
@ -2,10 +2,6 @@ body {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
strong, label, th {
|
||||
color: #395C84;
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
json.key @BETTER_VIDEO_API_KEY
|
||||
json.address campaign.address if campaign.address
|
||||
json.advertisername campaign.advertisername if campaign.advertisername
|
||||
json.awards campaign.awards if campaign.awards
|
||||
|
@ -1,11 +1,7 @@
|
||||
<div class="container">
|
||||
<section>
|
||||
<div class="pull-right">
|
||||
<%= link_to 'Cancel Edit Campaign', campaign_path(@campaign.listingcode) %> |
|
||||
<%= link_to 'Back to Campaigns', campaigns_path %>
|
||||
</div>
|
||||
<h1>Edit <%= @campaign.advertisername %></h1>
|
||||
<hr>
|
||||
<%= render 'form' %>
|
||||
</section>
|
||||
</div>
|
||||
<div class="pull-right">
|
||||
<%= link_to 'Cancel Edit Campaign', campaign_path(@campaign.listingcode) %> |
|
||||
<%= link_to 'Back to Campaigns', campaigns_path %>
|
||||
</div>
|
||||
<h1>Edit <%= @campaign.advertisername %></h1>
|
||||
<hr>
|
||||
<%= render 'form' %>
|
||||
|
@ -1,39 +1,35 @@
|
||||
<div class="container">
|
||||
<section>
|
||||
<h1>Campaigns</h1>
|
||||
<hr>
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Listing Code (Form Hash)</th>
|
||||
<th>Advertiser</th>
|
||||
<th>Sent?</th>
|
||||
<th>Percent of Videos Completed</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><%= campaign.advertisername %></td>
|
||||
<td><i class="glyphicon glyphicon-<% if campaign.sent? %>ok<% else %>remove<% end %>"></i> </td>
|
||||
<td><%= number_to_percentage(campaign.video_completion_percent, precision: 0) %></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) unless campaign.sent %></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 unless Rails.env.production? %>
|
||||
</section>
|
||||
</div>
|
||||
<h1>Campaigns</h1>
|
||||
<hr>
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Listing Code (Form Hash)</th>
|
||||
<th>Advertiser</th>
|
||||
<th>Sent?</th>
|
||||
<th>Percent of Videos Completed</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><%= campaign.advertisername %></td>
|
||||
<td><i class="glyphicon glyphicon-<% if campaign.sent? %>ok<% else %>remove<% end %>"></i> </td>
|
||||
<td><%= number_to_percentage(campaign.video_completion_percent, precision: 0) %></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) unless campaign.sent %></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 unless Rails.env.production? %>
|
||||
|
@ -1,10 +1,6 @@
|
||||
<div class="container">
|
||||
<section>
|
||||
<div class="pull-right">
|
||||
<%= link_to 'Cancel New Campaign', campaigns_path %>
|
||||
</div>
|
||||
<h1>New Campaign</h1>
|
||||
<hr>
|
||||
<%= render 'form' %>
|
||||
</section>
|
||||
</div>
|
||||
<div class="pull-right">
|
||||
<%= link_to 'Cancel New Campaign', campaigns_path %>
|
||||
</div>
|
||||
<h1>New Campaign</h1>
|
||||
<hr>
|
||||
<%= render 'form' %>
|
||||
|
@ -1,5 +1,3 @@
|
||||
<div class="container">
|
||||
<section>
|
||||
<div class="pull-right">
|
||||
<%= link_to 'Edit Campaign', edit_campaign_path(@campaign.listingcode) %> |
|
||||
<%= link_to 'Back to Campaigns', campaigns_path %>
|
||||
@ -149,5 +147,3 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
@ -21,4 +21,4 @@
|
||||
<% end %>
|
||||
|
||||
|
||||
<%= link_to "Back", :back %>
|
||||
<%= link_to "Back", :back %>
|
@ -14,7 +14,12 @@
|
||||
<div class="col-md-12">
|
||||
<%= render 'flashes' -%>
|
||||
<%= render 'layouts/header' %>
|
||||
<%= yield %>
|
||||
<div class="container">
|
||||
<section>
|
||||
<%= yield %>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<%= render 'javascript' %>
|
||||
<%= yield :js_foot %>
|
||||
|
@ -3,8 +3,6 @@
|
||||
<script src="//player.bettervideo.com/plugins/bvPlugins.js"></script>
|
||||
<% end %>
|
||||
|
||||
<div class="container">
|
||||
<section>
|
||||
<div class="pull-right">
|
||||
<%= link_to 'Back to Campaign', campaign_path(@videolisting.campaign.listingcode) %> |
|
||||
<%= link_to 'Back to Campaigns List', campaigns_path %>
|
||||
@ -36,8 +34,6 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user