Sha256: 6c262cba7cfaaecc2d6b4493fbef411a2847e329d9e4879e9dd497961c5cec3a

Contents?: true

Size: 859 Bytes

Versions: 55

Compression:

Stored size: 859 Bytes

Contents

.effective-order
  %table.table
    %thead
      %tr
        %th.quantity Quantity
        %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.subtotal)
      - if cart.empty?
        %tr
          %td.quantity
          %td.item There are no items in your shopping cart
          %td.price
    %tfoot
      %tr
        %th{:colspan => 2} Subtotal
        %td.price= price_to_currency(cart.subtotal)
      %tr
        %th{:colspan => 2} Tax
        %td.price= price_to_currency(cart.tax)
      %tr
        %th{:colspan => 2} Total Due
        %td.price= price_to_currency(cart.total)

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
effective_orders-1.6.5 app/views/effective/carts/_cart.html.haml
effective_orders-1.6.4 app/views/effective/carts/_cart.html.haml
effective_orders-1.6.3 app/views/effective/carts/_cart.html.haml
effective_orders-1.6.1 app/views/effective/carts/_cart.html.haml
effective_orders-1.6.0 app/views/effective/carts/_cart.html.haml
effective_orders-1.5.9 app/views/effective/carts/_cart.html.haml
effective_orders-1.5.8 app/views/effective/carts/_cart.html.haml
effective_orders-1.5.7 app/views/effective/carts/_cart.html.haml
effective_orders-1.5.5 app/views/effective/carts/_cart.html.haml
effective_orders-1.5.4 app/views/effective/carts/_cart.html.haml
effective_orders-1.5.3 app/views/effective/carts/_cart.html.haml
effective_orders-1.5.2 app/views/effective/carts/_cart.html.haml
effective_orders-1.5.1 app/views/effective/carts/_cart.html.haml
effective_orders-1.5.0 app/views/effective/carts/_cart.html.haml
effective_orders-1.4.8 app/views/effective/carts/_cart.html.haml
effective_orders-1.4.7 app/views/effective/carts/_cart.html.haml
effective_orders-1.4.6 app/views/effective/carts/_cart.html.haml
effective_orders-1.4.5 app/views/effective/carts/_cart.html.haml
effective_orders-1.4.4 app/views/effective/carts/_cart.html.haml
effective_orders-1.4.3 app/views/effective/carts/_cart.html.haml