Sha256: 1d555c4cd6f8674032352b5c69479b9cdcda8dd481815a9c28644c3a145bba9e

Contents?: true

Size: 1.44 KB

Versions: 32

Compression:

Stored size: 1.44 KB

Contents

#door-list-table
  %table#door-list.table
    %thead
      %tr
        %th
          %a{:href => "#", :class => "artfully-tooltip", :rel => "tooltip", "data-original-title" => "Checking this box will create a Went Action on this person's record.", "data-trigger" => "hover"}
            %span.badge{:class => "badge"} ?
        %th First
        %th Last
        %th Email
        %th Ticket Type
        %th Method
        %th Price
    %tbody
      - door_list_items.each do |door_list_item|
        %tr
          -# Changing this will also require a corresponding change in box-office.js#doorListRowFor
          %td
            = check_box_tag "validated", "validated", door_list_item.ticket.validated, :class => 'door-list-checkbox', 'data-ticket-id' => door_list_item.ticket.id
          %td= door_list_item.buyer.first_name
          %td= door_list_item.buyer.last_name
          %td= door_list_item.buyer.email
          %td= door_list_item.ticket.ticket_type.name
          %td= door_list_item.payment_method
          %td= number_as_cents(door_list_item.ticket.sold_price)
        - if door_list_item.special_instructions.present?
          %tr.no-border
            %td
            %td{:colspan => 6}
              Special Instructions:
              = door_list_item.special_instructions
        - if door_list_item.notes.present?
          %tr.no-border
            %td
            %td{:colspan => 6}
              Notes:
              = door_list_item.notes

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
artfully_ose-1.3.0.pre4 app/views/shared/_door_list_table.haml
artfully_ose-1.3.0.pre3 app/views/shared/_door_list_table.haml
artfully_ose-1.3.0.pre2 app/views/shared/_door_list_table.haml
artfully_ose-1.3.0.pre1 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.beta.1 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.alpha.2 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.alpha.1 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.27 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.26 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.24 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.23 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.21 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.20 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.19 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.18 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.17 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.16 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.15 app/views/shared/_door_list_table.haml
artfully_ose-1.2.0.pre.12 app/views/shared/_door_list_table.haml