Sha256: 40b95beb5fd6fc504d13f4f8066cadc6ba633431d551ec0e5f44b86c6d3da78d

Contents?: true

Size: 836 Bytes

Versions: 1

Compression:

Stored size: 836 Bytes

Contents

<% content_for :head do %>
  <%= javascript_include_tag '/states' %>
<% end %>
<div id="checkout">
  <h1><%= t("checkout")%></h1>
  <%= checkout_progress %>
  <br clear="left" />
  <%= render "shared/error_messages", :target => @order %>
  <%= hook :checkout_summary_box do %>
    <div id="checkout-summary">
      <%= render 'summary', :order => @order %>
    </div>
  <% end %>


  <% if(@order.state == "payment") %>
        <%= render('checkout/paypal_checkout') if @order.payable_via_paypal?  %>
  <% else %>
      <%= form_for @order, :url => update_checkout_path(@order.state), :html => { :id => "checkout_form_#{@order.state}" } do |form| %>
        <%= render @order.state, :form => form %>
        <input id="post-final" type="submit" style="display:none"/>
      <% end %>
  <% end %>
</div>

<div id="payment_step">

</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_paypal_website_standard-0.8.4 app/views/checkout/edit.html.erb