Sha256: e191b83d59ee0029c30588e65c9c7f392412da931ac5cc8c240cf8e7f5c774a2

Contents?: true

Size: 672 Bytes

Versions: 217

Compression:

Stored size: 672 Bytes

Contents

.effective-cart
  %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.name.html_safe
            = ' - '
            = link_to_remove_from_cart(item)
          %td.price
            = price_to_currency(item.price)
      - if cart.blank?
        %tr
          %td.quantity
          %td.item No items in cart.
          %td.price
    %tfoot
      %tr
        %th.quantity
        %th.subtotal Subtotal
        %td.price.subtotal-price= price_to_currency(cart.subtotal)

Version data entries

217 entries across 217 versions & 1 rubygems

Version Path
effective_orders-6.14.2 app/views/effective/carts/_cart.html.haml
effective_orders-6.14.1 app/views/effective/carts/_cart.html.haml
effective_orders-6.14.0 app/views/effective/carts/_cart.html.haml
effective_orders-6.13.3 app/views/effective/carts/_cart.html.haml
effective_orders-6.13.2 app/views/effective/carts/_cart.html.haml
effective_orders-6.13.1 app/views/effective/carts/_cart.html.haml
effective_orders-6.13.0 app/views/effective/carts/_cart.html.haml
effective_orders-6.12.4 app/views/effective/carts/_cart.html.haml
effective_orders-6.12.3 app/views/effective/carts/_cart.html.haml
effective_orders-6.12.2 app/views/effective/carts/_cart.html.haml
effective_orders-6.12.1 app/views/effective/carts/_cart.html.haml
effective_orders-6.12.0 app/views/effective/carts/_cart.html.haml
effective_orders-6.9.10 app/views/effective/carts/_cart.html.haml
effective_orders-6.9.9 app/views/effective/carts/_cart.html.haml
effective_orders-6.9.8 app/views/effective/carts/_cart.html.haml
effective_orders-6.9.7 app/views/effective/carts/_cart.html.haml
effective_orders-6.9.6 app/views/effective/carts/_cart.html.haml
effective_orders-6.9.5 app/views/effective/carts/_cart.html.haml
effective_orders-6.9.4 app/views/effective/carts/_cart.html.haml
effective_orders-6.9.2 app/views/effective/carts/_cart.html.haml