diff --git a/magprime/forms.py b/magprime/forms.py index dc61073..ef9ad4c 100644 --- a/magprime/forms.py +++ b/magprime/forms.py @@ -114,7 +114,7 @@ class BadgeExtras: ], widget=NumberInputWithChoices(choices=c.SUPERSTAR_DONATION_OPTS)) def extra_donation_label(self): - return Markup("Superstar Donation ({})".format(popup_link("../static_views/givingExtra.html", "Learn more"))) + return Markup("Superstar Donation ({})".format(popup_link("https://super.magfest.org/superstars", "Learn more"))) @MagForm.form_mixin class AdminBadgeExtras: diff --git a/magprime/templates/forms/attendee/badge_extras.html b/magprime/templates/forms/attendee/badge_extras.html index 58cb2f2..86a2bdf 100644 --- a/magprime/templates/forms/attendee/badge_extras.html +++ b/magprime/templates/forms/attendee/badge_extras.html @@ -1,37 +1,46 @@ {% extends 'uber/templates/forms/attendee/badge_extras.html' %} {% block donation %} -
- {% if not admin_area and c.BEFORE_SUPERSTAR_DEADLINE %} +{% set show_full_desc = not admin_area and (not receipt or upgrade_modal) %} + +{% if show_full_desc and c.BEFORE_SUPERSTAR_DEADLINE %} +
+
+ + Become a Superstar + +
+
+{% endif %} + {% if show_full_desc %} +
+
{{ form_macros.form_input(badge_extras.extra_donation, id=id_upgrade_prepend ~ "extra_donation") }}
+
+
- - Become a Superstar - -
- {% endif %} -
{{ form_macros.form_input(badge_extras.extra_donation, id=id_upgrade_prepend ~ "extra_donation") }}
- {% if receipt and not upgrade_modal and not admin_area %} -
-
 
{{ macros.upgrade_button('extra-donation', extra_classes="") }}
- {% endif %} - {% if not admin_area %} -
- {% if c.BEFORE_SUPERSTAR_DEADLINE %} -

Donate to MAGFest and become a Superstar! - With a donation of $30 or more, you'll be listed as a Superstar donor on our website, have your name and - pet appear on the at-event Jumbotron, gain an exclusive Superstar role on our Discord server, and more.

- -

Feeling even more generous or want additional info? Check out our expanded tiers and benefits - (including sponsoring your own Graffiti Banner) on our Superstar page above.

- {% else %} -

The deadline for becoming a Superstar - has passed, but we always appreciate any extra donations!

- {% endif %} + {% if c.BEFORE_SUPERSTAR_DEADLINE %} +

Donate to MAGFest and become a Superstar! + With a donation of $30 or more, you'll be listed as a Superstar donor on our website, have your name and + pet appear on the at-event Jumbotron, gain an exclusive Superstar role on our Discord server, and more.

+ +

Feeling even more generous or want additional info? Check out our expanded tiers and benefits + (including sponsoring your own Graffiti Banner) on our Superstar page above.

+ {% else %} +

The deadline for becoming a Superstar + has passed, but we always appreciate any extra donations!

+ {% endif %} -

Donations are not merch packages and do not come with merchandise. - MAGFest, Inc. is a 501(c)(3) charitable organization, so your donation is tax-deductible. - For more information, please contact {{ "accounting@magfest.org"|email_to_link }}.

+

Donations are not merch packages and do not come with merchandise. + MAGFest, Inc. is a 501(c)(3) charitable organization, so your donation is tax-deductible. + For more information, please contact {{ "accounting@magfest.org"|email_to_link }}.

+
+
+ {% else %} +
+
+
{{ badge_extras.extra_donation.label.text }}
+
{{ attendee.extra_donation|format_currency }} {{ macros.upgrade_button('extra-donation') }}
- {% endif %} -
+
+ {% endif %} {% endblock %} \ No newline at end of file