Skip to content

Instantly share code, notes, and snippets.

@barnes7td
Created November 10, 2013 04:16
Show Gist options
  • Save barnes7td/7393707 to your computer and use it in GitHub Desktop.
Save barnes7td/7393707 to your computer and use it in GitHub Desktop.
promotions show view
<br>
<div class="row">
<div class="col-lg-12">
<div class="col-lg-8 image_container"><%= image_tag(@promotion.image_url, class: "img-rounded") if @promotion.image? %>
</div>
<div class="col-lg-3 thumbnail">
<h4 align="center">Summary</h4>
<br>
<p align="center">Price: $<%= @promotion.price %></p>
<br>
<p align="center">Expires: <%= @promotion.expiration %></p>
<br>
<p align="center"><%= image_tag(@promotion.qrcode_url, class: "img-rounded") if @promotion.qrcode? %>
<br>
<br>
</p>
<div align="center">
<%= form_tag charges_path do %>
<script src="https://checkout.stripe.com/v2/checkout.js" class="stripe-button"
data-key="<%= Rails.configuration.stripe[:publishable_key] %>"
data-description="Cost of Promotion"
data-amount=<%= @promotion.price * 100 %>></script>
<% end %>
</div>
<br>
</div>
</div>
</div>
<div class="col-lg-8">
<h3><%= @promotion.title %></h3>
<div class="col-lg-5 justify">
<h4>Details</h4>
<p><%= @promotion.details %></p>
</div>
<div class="col-lg-5 justify">
<h4>Highlights</h4>
<p><%= @promotion.highlights %></p>
</div>
<div class="col-lg-5 justify">
<h4>Company Information</h4>
<p><%= @promotion.company_info %></p>
</div>
<div class="col-lg-5 justify">
<h4>Fine Print</h4>
<p><%= @promotion.fine_print %></p>
<br>
</div>
<div class="col-lg-5 pull-left" id="googleMap" style="width:275px;height:250px;">
</div>
<div class="col-lg-5" align="center">
<%= form_tag charges_path do %>
<br>
</br>
<script src="https://checkout.stripe.com/v2/checkout.js" class="stripe-button"
data-key="<%= Rails.configuration.stripe[:publishable_key] %>"
data-description="Cost of Promotion"
data-amount=<%= @promotion.price * 100 %>></script>
<% end %>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment