Skip to content

Commit

Permalink
Account for cancelled, declined, or end-of-waitlisted dealers
Browse files Browse the repository at this point in the history
This should make the badge_converted email say the right thing if the group is being declined or the waitlist is being closed.
  • Loading branch information
kitsuta authored Nov 22, 2023
1 parent 7b848ce commit 788aa21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uber/templates/emails/dealers/badge_converted.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

{{ attendee.first_name }},

<br/><br/>Although your group ({{ group.name }}) {{ 'cancelled their ' + c.DEALER_APP_TERM if group.status == c.CANCELLED else 'was not taken off the waitlist' }}, we think you may still want to come and enjoy all that {{ c.EVENT_NAME }} has to offer!
<br/><br/>Although your group ({{ group.name }}) {{ 'cancelled their ' + c.DEALER_APP_TERM if group.status == c.CANCELLED else ('was declined' if group.status == c.DECLINED else 'was not taken off the waitlist') }}, we think you may still want to come and enjoy all that {{ c.EVENT_NAME }} has to offer!
Therefore, we have reserved a badge for you{% if c.PRICE_BUMPS and attendee.badge_cost < c.BADGE_PRICE %} at the price of registration when you first applied{% endif %}.
Badges went to anyone in your group who had a valid email on the badge, and any unassigned badges were dropped.

Expand Down

0 comments on commit 788aa21

Please sign in to comment.