Sha256: 7065faf44ac57fd06282a64dbb38e90827673652e10c300350c1e3c1e3d97a0e

Contents?: true

Size: 676 Bytes

Versions: 24

Compression:

Stored size: 676 Bytes

Contents

.effective-order
  %table.table
    %thead
      %tr
        %th.quantity Qty
        %th.item Item
        %th.price Price
    %tbody
      - cart.cart_items.each do |item|
        %tr
          %td.quantity
            = item.quantity
          %td.item
            = item.title.html_safe
            = ' - '
            = link_to_remove_from_cart(item)
          %td.price
            = price_to_currency(item.price)
      - if cart.empty?
        %tr
          %td.quantity
          %td.item Your cart is empty.
          %td.price
    %tfoot
      %tr
        %th.quantity
        %th.subtotal Subtotal
        %td.price.subtotal-price= price_to_currency(cart.subtotal)

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
effective_orders-2.2.4 app/views/effective/carts/_cart.html.haml
effective_orders-2.2.3 app/views/effective/carts/_cart.html.haml
effective_orders-2.2.2 app/views/effective/carts/_cart.html.haml
effective_orders-2.2.1 app/views/effective/carts/_cart.html.haml
effective_orders-2.2.0 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.17 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.16 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.15 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.14 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.13 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.12 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.10 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.9 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.8 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.7 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.6 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.5 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.4 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.3 app/views/effective/carts/_cart.html.haml
effective_orders-2.1.2 app/views/effective/carts/_cart.html.haml