effective_events 2.32.0 → 2.32.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/datatables/admin/effective_event_addons_datatable.rb +1 -1
- data/app/datatables/admin/effective_event_registrants_datatable.rb +1 -1
- data/app/datatables/admin/effective_event_registrations_datatable.rb +3 -3
- data/app/datatables/admin/effective_events_datatable.rb +5 -5
- data/app/datatables/effective_event_addons_datatable.rb +1 -1
- data/app/datatables/effective_event_registrants_datatable.rb +1 -1
- data/app/datatables/effective_event_registrations_datatable.rb +5 -5
- data/app/datatables/effective_events_datatable.rb +1 -1
- data/lib/effective_events/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81ec9bb4f71c619dc8ffc2632f2fa53898ba7c7f78978130fef63aba5cd5ba76
|
4
|
+
data.tar.gz: 3a3b4b10cacc93bc04d4c9ca6081e6ce3a7d1991af032f13bf02aa22d7bc5927
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b53a568ab95d67da9773ab9a32f7b126fda3992b18d2d992d194a432f9e0821cce2f06b6aeab2f899da10a7e126e22d7bb63f385250db2c9168c05c02bbf40be
|
7
|
+
data.tar.gz: 283afdc9a85aefeaea037c610526cb6822d1e0ac8dc58da4489d931742566da9d74bb6a360750fa5bd146aae1518bf2d690dd1f0cd4f470083545df3863ee4c7
|
@@ -10,11 +10,11 @@ class Admin::EffectiveEventRegistrationsDatatable < Effective::Datatable
|
|
10
10
|
col :submitted_at, label: 'Submitted', as: :date
|
11
11
|
col :completed_at, label: 'Completed', as: :date
|
12
12
|
|
13
|
-
col :event
|
13
|
+
col :event
|
14
14
|
col :owner
|
15
15
|
|
16
|
-
col :event_registrants,
|
17
|
-
col :event_addons,
|
16
|
+
col :event_registrants, visible: false
|
17
|
+
col :event_addons, visible: false
|
18
18
|
col :orders, label: 'Order'
|
19
19
|
|
20
20
|
actions_col
|
@@ -48,17 +48,17 @@ module Admin
|
|
48
48
|
col :delayed_payment_date, visible: false
|
49
49
|
|
50
50
|
# These show too much information to be useful to admins, rely on the edit screen
|
51
|
-
# col :event_tickets
|
52
|
-
# col :event_products
|
53
|
-
# col :event_registrants
|
54
|
-
# col :event_addons
|
51
|
+
# col :event_tickets
|
52
|
+
# col :event_products
|
53
|
+
# col :event_registrants
|
54
|
+
# col :event_addons
|
55
55
|
|
56
56
|
col :allow_blank_registrants, visible: false
|
57
57
|
col :roles, visible: false
|
58
58
|
col :authenticate_user, visible: false
|
59
59
|
|
60
60
|
col :qb_item_names,
|
61
|
-
search: { fuzzy: true, collection:Effective::ItemName.sorted.map(&:to_s) },
|
61
|
+
search: { fuzzy: true, collection: Effective::ItemName.sorted.map(&:to_s) },
|
62
62
|
label: qb_item_names_label,
|
63
63
|
visible: false do |event|
|
64
64
|
event.qb_item_names.map { |qb_item_name| content_tag(:div, qb_item_name) } .join.html_safe
|
@@ -7,7 +7,7 @@ class EffectiveEventAddonsDatatable < Effective::Datatable
|
|
7
7
|
"#{er.first_name} #{er.last_name}<br><small>#{mail_to(er.email)}</small>"
|
8
8
|
end
|
9
9
|
|
10
|
-
col :event_product,
|
10
|
+
col :event_product, label: 'Add-on' do |er|
|
11
11
|
[
|
12
12
|
er.event_product.to_s,
|
13
13
|
(content_tag(:span, 'Archived', class: 'badge badge-warning') if er.event_product&.archived?)
|
@@ -7,7 +7,7 @@ class EffectiveEventRegistrantsDatatable < Effective::Datatable
|
|
7
7
|
col :full_name, label: 'Name'
|
8
8
|
col :id, visible: false
|
9
9
|
|
10
|
-
col :event_ticket,
|
10
|
+
col :event_ticket, label: 'Ticket' do |er|
|
11
11
|
[er.event_ticket.to_s, er.details.presence].compact.join('<br>').html_safe
|
12
12
|
end
|
13
13
|
|
@@ -10,16 +10,16 @@ class EffectiveEventRegistrationsDatatable < Effective::Datatable
|
|
10
10
|
er.submitted_at&.strftime('%F') || 'Incomplete'
|
11
11
|
end
|
12
12
|
|
13
|
-
col :event
|
13
|
+
col :event do |er|
|
14
14
|
link_to(er.event.to_s, effective_events.event_path(er.event))
|
15
15
|
end
|
16
16
|
|
17
|
-
col :owner, visible: false
|
17
|
+
col :owner, visible: false
|
18
18
|
col :status, visible: false
|
19
|
-
col :event_registrants, label: 'Registrants'
|
19
|
+
col :event_registrants, label: 'Registrants'
|
20
20
|
|
21
|
-
col :event_addons, label: 'Add-ons'
|
22
|
-
col :orders, action: :show, visible: false
|
21
|
+
col :event_addons, label: 'Add-ons'
|
22
|
+
col :orders, action: :show, visible: false
|
23
23
|
|
24
24
|
actions_col(actions: []) do |er|
|
25
25
|
if er.draft? || er.submitted?
|
@@ -30,7 +30,7 @@ class EffectiveEventsDatatable < Effective::Datatable
|
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
33
|
-
col :event_tickets, visible: false
|
33
|
+
col :event_tickets, visible: false
|
34
34
|
col :early_bird_end_at, label: 'Early bird ends', visible: false
|
35
35
|
|
36
36
|
actions_col show: false do |event|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: effective_events
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.32.
|
4
|
+
version: 2.32.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-04-
|
11
|
+
date: 2025-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|