diff --git a/files/templates/donate.html b/files/templates/donate.html index 4d5fe202c..96b697059 100644 --- a/files/templates/donate.html +++ b/files/templates/donate.html @@ -1,11 +1,12 @@ {% extends "default.html" %} {% block pagetitle %}Donate{% endblock %} {% block content %} + {% set can_see = DONATE_LINK != DEFAULT_CONFIG_VALUE and v and v.can_see_countryclub and v.chud != 1 %}

Donate and get {{patron}} rewards

- {% if DONATE_LINK != DEFAULT_CONFIG_VALUE and v and v.can_see_countryclub and v.chud != 1 %} + {% if can_see %} @@ -30,13 +31,13 @@
{{DONATE_SERVICE}} {{DONATE_LINK}}
- {% if v and v.truescore >= TRUESCORE_MINIMUM and DONATE_LINK != DEFAULT_CONFIG_VALUE %} + {% if can_see %}
  • If you donate via {{DONATE_SERVICE}}, please first verify your email on the site, and then use that same email on {{DONATE_SERVICE}} to get your {{patron}} rewards automatically!
  • {% endif %}
  • - If you donate crypto, please let us know by sending us a modmail so we can give you your {{patron}} rewards manually! + If you donate{% if can_see %} crypto{% endif %}, please let us know by sending us a modmail so we can give you your {{patron}} rewards manually!
  • {% endblock %}