Sha256: 04dc8e3a4df23bc98e1d6343e5970a5d3c163e222cb7b898f030e1647d3e6566

Contents?: true

Size: 678 Bytes

Versions: 41

Compression:

Stored size: 678 Bytes

Contents

class Admin::EffectiveEventRegistrationsDatatable < Effective::Datatable
  datatable do
    order :created_at

    col :token, visible: false

    col :created_at, label: 'Created', visible: false
    col :updated_at, label: 'Updated', visible: false

    col :submitted_at, label: 'Submitted', as: :date
    col :completed_at, label: 'Completed', as: :date

    col :event, search: :string
    col :owner

    col :event_registrants, search: :string, visible: false
    col :event_addons, search: :string, visible: false
    col :orders, label: 'Order'

    actions_col
  end

  collection do
    EffectiveEvents.EventRegistration.all.deep.where.not(status: :draft)
  end

end

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
effective_events-2.29.2 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-2.29.1 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-2.29.0 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-2.28.3 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-2.28.2 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-2.28.1 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-2.28.0 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-2.27.0 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-2.26.0 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-2.25.1 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-2.25.0 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-0.24.0 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-0.23.1 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-0.23.0 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-0.22.2 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-0.22.1 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-0.22.0 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-0.21.3 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-0.21.2 app/datatables/admin/effective_event_registrations_datatable.rb
effective_events-0.21.1 app/datatables/admin/effective_event_registrations_datatable.rb