effective_events 0.17.0 → 0.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/datatables/effective_event_registrants_datatable.rb +2 -1
- data/app/models/effective/event_ticket.rb +1 -0
- data/app/views/admin/event_tickets/_form.html.haml +3 -2
- data/app/views/admin/events/_form_event.html.haml +1 -1
- data/app/views/effective/event_registrations/_event_tickets.html.haml +1 -1
- data/app/views/effective/event_registrations/tickets.html.haml +2 -1
- data/config/locales/effective_events.en.yml +1 -1
- data/db/migrate/101_create_effective_events.rb +2 -0
- 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: 192d39046e600f74608d6f9b5bf1cc90f14be13eabb74ceed9365579919e2a95
|
4
|
+
data.tar.gz: af3326868396402818278f3144a3ea061c417c1b65e7cc178be801726bb16d59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3160971a296127da50d08aae0a1b35939d18f83aa65b479043b8f832b79812975c5b46759f9caab63f3b19b72d3ae0b3b372293011b45ee59dc4c0bd60753339
|
7
|
+
data.tar.gz: b899987a70b37e98033d2c1ad634bfe65b00610b0326cdf353edeadc1c4fe6ecb8a2db7bbb26e53f383c1f339acb163a4e850fbac9941362c6d8abd2ee28dfeb
|
@@ -6,7 +6,8 @@ class EffectiveEventRegistrantsDatatable < Effective::Datatable
|
|
6
6
|
|
7
7
|
col :name do |er|
|
8
8
|
if er.first_name.present?
|
9
|
-
|
9
|
+
email = (er.user.present? ? masked_email(er.user) : er.email)
|
10
|
+
"#{er.first_name} #{er.last_name}<br><small>#{email}</small>"
|
10
11
|
elsif er.owner.present?
|
11
12
|
er.owner.to_s + ' - GUEST'
|
12
13
|
else
|
@@ -24,12 +24,13 @@
|
|
24
24
|
Anyone will be able to purchase this ticket. They can select a member from the dropdown list of all members to receive the member pricing or they can enter a first name and last name to receive the regular pricing.
|
25
25
|
|
26
26
|
.col
|
27
|
-
= f.number_field :capacity, hint: "The number of registrations will be limited to capacity
|
27
|
+
= f.number_field :capacity, hint: "The number of registrations will be limited to capacity. Leave blank for unlimited capacity."
|
28
|
+
= f.check_box :display_capacity, label: "Yes, display the remaining ticket capacity to users during registration", hint: "Leave blank to hide the capacity."
|
28
29
|
|
29
30
|
- if f.object.event&.delayed?
|
30
31
|
= f.check_box :waitlist,
|
31
32
|
label: "Yes, add to waitlist once capacity is reached",
|
32
|
-
hint: "requires a delayed payment event. Once capacity is reached, new registrations will be added to the waitlist. Payment information is collected but not charged for waitlisted registrants."
|
33
|
+
hint: "requires a delayed payment event. Once capacity is reached, new registrations will be added to the waitlist. Payment information is collected but not charged for waitlisted registrants. To waitlist everyone and promote later, set the capacity to zero."
|
33
34
|
.row
|
34
35
|
.col-md-6
|
35
36
|
- if f.object.event&.early_bird_end_at.present?
|
@@ -5,7 +5,7 @@
|
|
5
5
|
= f.hide_if(:save_as_draft, true) do
|
6
6
|
.row
|
7
7
|
.col-md-6
|
8
|
-
= f.datetime_field :published_start_at, hint: 'The event will be available starting on this date and time. Leave blank to
|
8
|
+
= f.datetime_field :published_start_at, hint: 'The event will be available starting on this date and time. Leave blank to publish immediately.'
|
9
9
|
.col-md-6
|
10
10
|
= f.datetime_field :published_end_at, hint: 'The event will no longer be available after this date and time. Leave blank for no end date.', date_linked: false
|
11
11
|
|
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: 0.
|
4
|
+
version: 0.18.0
|
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: 2024-07-
|
11
|
+
date: 2024-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|