Sha256: bd94ec97a74b9607a69df477a936316138e796184ad126c5f9444dc0d2d72c7f

Contents?: true

Size: 1.08 KB

Versions: 32

Compression:

Stored size: 1.08 KB

Contents

#items
  %table.zebra.table
    %thead
      %tr
        %th.grouped-checkbox= check_box_tag :all, nil, false, :class => :checkall
        %th Item
        %th Price Paid
        %th Discount
        %th
    %tbody
      - order.donations.each do |item|
        %tr{:id => "row_item_#{item.id}", :class => item.state}
          %td.grouped-checkbox= check_box_tag "item_#{item.id}", item.id, false, :disabled => true
          %td.item-description
            - if item.product_type.eql?("Ticket")
              %span=(item.state.eql?("refund") ? "Refund for" : "Ticket to")
              %span
                #{link_to "#{item.product.event.name}", event_path(item.product.event)},
                #{link_to "#{l item.product.datetime}", event_show_path(item.product.show.event, item.product.show)}
            - if item.product_type.eql?("Donation")
              %span Donation
          %td.price= amount_and_nongift item
          %td
            =item.discount.try(:code)
          %td.state
            -if (item.product_type.eql?('Ticket') && !item.purchased?)
              = item.state.capitalize

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
artfully_ose-1.2.0.pre.11 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre.10 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre.9 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre.8 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre.7 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre.6 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre.5 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre.4 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre.3 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre.2 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre.1 app/views/orders/_item_donations_table.html.haml
artfully_ose-1.2.0.pre app/views/orders/_item_donations_table.html.haml