Sha256: 6e52198d673b1995cae9ff42f078e2e0dfc99753a3de88fba6d9ddbbe1cd77b1

Contents?: true

Size: 518 Bytes

Versions: 6

Compression:

Stored size: 518 Bytes

Contents

%h2.effective-orders-page-title= (@page_title || 'My Cart')

- if @cart.empty?
  %p Your cart is empty.
- else
  %p Your cart has #{@cart.cart_items.length} items.

  = render_cart(@cart)
  %hr
  = render partial: '/effective/carts/cart_actions', locals: { cart: @cart }

- if @pending_orders.present?
  %h3 Pending Orders
  %p The following orders are ready for you to purchase:
  = render_orders_table(@pending_orders)

- if EffectiveOrders.show_order_history_button
  = link_to_my_purchases(label: 'Order History')

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
effective_orders-2.1.3 app/views/effective/carts/show.html.haml
effective_orders-2.1.2 app/views/effective/carts/show.html.haml
effective_orders-2.1.1 app/views/effective/carts/show.html.haml
effective_orders-2.1.0 app/views/effective/carts/show.html.haml
effective_orders-2.0.1 app/views/effective/carts/show.html.haml
effective_orders-2.0.0 app/views/effective/carts/show.html.haml