Sha256: ad14f052d4a6bc7a63b35efdf4975da97ef56dbb009720ce1a7699fcf8a5c961

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.tickets.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.3.0.pre4 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.3.0.pre3 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.3.0.pre2 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.3.0.pre1 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.beta.1 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.alpha.2 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.alpha.1 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.27 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.26 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.24 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.23 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.21 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.20 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.19 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.18 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.17 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.16 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.15 app/views/orders/_item_tickets_table.html.haml
artfully_ose-1.2.0.pre.12 app/views/orders/_item_tickets_table.html.haml