Sha256: da7a90b817cef4d6b3cbcfb8196eb15ae86b6bd8a6525778fabed10597c4cafb

Contents?: true

Size: 1.75 KB

Versions: 9

Compression:

Stored size: 1.75 KB

Contents

<% @body_id = 'cart' %>
<div data-hook="cart_container">
  <h1><%= Spree.t(:shopping_cart) %></h1>

  <% if @order.line_items.empty? %>

    <div data-hook="empty_cart">
      <p><%= Spree.t(:your_cart_is_empty) %></p>
      <p><%= link_to Spree.t(:continue_shopping), products_path, :class => 'button continue' %></p>
    </div>

  <% else %>
    <div data-hook="outside_cart_form">
    <%= form_for @order, :url => update_cart_path, :html => {:id => 'update-cart'} do |order_form| %>
      <div data-hook="inside_cart_form">

      <div data-hook="cart_items">
        <%= render :partial => 'form', :locals => { :order_form => order_form } %>
      </div>

        <div id="subtotal" data-hook class="columns sixteen alpha omega">
          <h5><%= Spree.t(:subtotal) %>: <span class="order-total"><%= @order.display_total.to_html %></span></h5>
        </div>

        <div class="links columns sixteen alpha omega" data-hook="cart_buttons">
          <%= order_form.text_field :coupon_code, :size => 10, :placeholder => Spree.t(:coupon_code) %>
          <%= button_tag :class => 'primary', :id => 'update-button' do %>
            <%= Spree.t(:update) %>
          <% end %>
          <%= button_tag :class => 'button checkout primary', :id => 'checkout-link', :name => 'checkout' do %>
            <%= Spree.t(:checkout) %>
          <% end %>
        </div>
      </div>
    </div>
  <% end %>

  <div id="empty-cart" data-hook>
    <%= form_tag empty_cart_path, :method => :put do %>
      <p id="clear_cart_link" data-hook>
        <%= submit_tag Spree.t(:empty_cart), :class => 'button gray' %>
        <%= Spree.t(:or) %>
        <%= link_to Spree.t(:continue_shopping), products_path, :class => 'continue button gray' %>
      </p>
    <% end %>
  </div>

  <% end %>
</div>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
spree_frontend-2.1.12 app/views/spree/orders/edit.html.erb
spree_frontend-2.1.11 app/views/spree/orders/edit.html.erb
spree_frontend-2.1.10 app/views/spree/orders/edit.html.erb
spree_frontend-2.1.9 app/views/spree/orders/edit.html.erb
spree_frontend-2.1.8 app/views/spree/orders/edit.html.erb
spree_frontend-2.1.7 app/views/spree/orders/edit.html.erb
spree_frontend-2.1.6 app/views/spree/orders/edit.html.erb
spree_frontend-2.1.5 app/views/spree/orders/edit.html.erb
spree_frontend-2.1.4 app/views/spree/orders/edit.html.erb