Sha256: a8dd1c3e7da04b1a356cd1c23e98701a537100c12e30a2ddc0d3fa8a484f712a
Contents?: true
Size: 948 Bytes
Versions: 7
Compression:
Stored size: 948 Bytes
Contents
<% content_for :head do %> <%= javascript_include_tag 'checkout' %> <% end %> <div id="checkout"> <h1><%= t("checkout")%></h1> <% form_for @order, :url => checkout_order_path(@order), :html => { :method => :post, :id => 'checkout_form'} do |order_form| %> <%= render :partial => 'checkout_form', :locals => {:order_form => order_form} %> <input id="post-final" type="submit" style="display:none"/> <% end %> </div> <input type="hidden" id="hidden_bstate" name="hidden_bstate" value="<%= @order.bill_address.state_id || @order.bill_address.state_name %>" /> <input type="hidden" id="hidden_bcountry" name="hidden_bcountry" value="<%= @order.bill_address.country_id %>" /> <input type="hidden" id="hidden_sstate" name="hidden_sstate" value="<%= @order.ship_address.state_id || @order.ship_address.state_name %>" /> <input type="hidden" id="hidden_scountry" name="hidden_scountry" value="<%= @order.ship_address.country_id %>" />
Version data entries
7 entries across 7 versions & 2 rubygems