Sha256: a3ffe62e0179ce41441736c123d8063bf4fdcef5f3ea540ba13c24d4d6f0b514

Contents?: true

Size: 733 Bytes

Versions: 3

Compression:

Stored size: 733 Bytes

Contents

%table.table.table-hover
  %thead
    %tr
      %th.col-method
        %span.in-grey-600.ml-40= t('delivery.method')
      %th
        %span.in-grey-600= t('delivery.days')
      %th
        %span.in-grey-600= t('delivery.price')
  %tbody
    - ShoppingCart::Delivery.all.each do |delivery|
      %tr
        %td
          .form-group.radio.mt-0.mb-0
            %label.font-16.font-weight-light.pl-0
              = radio_button_tag 'delivery_id', delivery.id, checked_delivery?(delivery.id), hidden: "true", class: "radio-input"
              %span.radio-icon
              %span.radio-text= delivery.name
        %td
          %span= delivery.duration
        %td
          %span.font-16.in-gold-500= price_to_euro(delivery.price)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
loker-shopping-cart-0.1.3 app/views/shopping_cart/checkouts/_delivery_list.haml
loker-shopping-cart-0.1.2 app/views/shopping_cart/checkouts/_delivery_list.haml
loker-shopping-cart-0.1.1 app/views/shopping_cart/checkouts/_delivery_list.haml