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.2.10 app/views/effective/carts/_cart.html.haml
effective_orders-1.2.9 app/views/effective/carts/_cart.html.haml
effective_orders-1.2.8 app/views/effective/carts/_cart.html.haml
effective_orders-1.2.7 app/views/effective/carts/_cart.html.haml
effective_orders-1.2.6 app/views/effective/carts/_cart.html.haml
effective_orders-1.2.5 app/views/effective/carts/_cart.html.haml
effective_orders-1.2.4 app/views/effective/carts/_cart.html.haml
effective_orders-1.2.3 app/views/effective/carts/_cart.html.haml
effective_orders-1.2.2 app/views/effective/carts/_cart.html.haml
effective_orders-1.2.1 app/views/effective/carts/_cart.html.haml
effective_orders-1.2.0 app/views/effective/carts/_cart.html.haml
effective_orders-1.1.2 app/views/effective/carts/_cart.html.haml
effective_orders-1.1.1 app/views/effective/carts/_cart.html.haml
effective_orders-1.1.0 app/views/effective/carts/_cart.html.haml
effective_orders-1.0.0 app/views/effective/carts/_cart.html.haml