Sha256: 52d713bd2b7a85a98ade8796ed6696a450b2dee83ee991fa1ecfbe463b064084

Contents?: true

Size: 1.83 KB

Versions: 1

Compression:

Stored size: 1.83 KB

Contents

#items
  = form_tag do
    -unless is_child
      .row-fluid
        .span4.grouped-form-target{:style => 'width:210px'}
        .span8{:style => 'margin-top:5px'}
          %span.help.tight{'data-placement' => 'bottom', 'data-title' => 'Refund/Exchange/Return', 'data-content' => "<p><b>Refund</b> Refunds full price of the ticket to the patron.</p><br/><p><b>Exchange</b> Swaps this ticket for another ticket, no money is charged or refunded.</p><br/><p><b>Return</b> Returns a ticket to inventory.  Use this to return comp'd tickets.".html_safe} ?
    %table.zebra.table#item-table
      %thead
        %tr
          %th.grouped-checkbox= check_box_tag :all, nil, false, :class => :checkall
          %th Item
          %th Price Paid
          %th Discount / Pass
          %th
      %tbody
        - order.all_items.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
              - if item.product_type.eql?("Membership")
                %span=item.product.membership_type.name
            %td.price= amount_and_nongift item
            %td
              =item.discount.try(:code) || item.pass.try(:pass_type).try(:name)
            %td.state
              -if (item.product_type.eql?('Ticket') && !item.purchased?)
                = item.state.capitalize

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
artfully_ose-1.2.0.pre.23 app/views/orders/_item_table.haml