From 6e25a6e084d63fd1dbd6454ab376b1ea766c5889 2017-02-03 18:56:36 From: Brett Smith Date: 2017-02-03 18:56:36 Subject: [PATCH] base: Start progressbar for new match. This code should be easier to adapt to future matches too, by just changing the constants in the first `with` declaration and whatever text is desired. --- diff --git a/www/conservancy/templates/base_conservancy.html b/www/conservancy/templates/base_conservancy.html index 46e120ab48dbb774eb7934cc93d1ad041594c651..2108c8bc258b7dedd6836dfd8abebc3fb982db76 100644 --- a/www/conservancy/templates/base_conservancy.html +++ b/www/conservancy/templates/base_conservancy.html @@ -52,36 +52,37 @@ fundraiser_so_far_amount: The number of Supporters we have fundraiser_donation_count: The "minimum" number of Supporters we want (not currently used) fundraiser_donation_count_disclose_threshold: The number of Supporters that have been matched -When we started the fundraiser, we had 660 Supporters matched. -PIA will match up to 416. -660+416==1076, so we use that constant to see if our match is done. +When we started this match, we had 1076 Supporters matched, so we subtract +that from count_disclose_threshold to determine how many happened in the +current match. {% endcomment %} -{% comment %} +{% with this_match_goal=150 this_match_so_far=sitefundgoal.fundraiser_donation_count_disclose_threshold|subtract:1076 %} +{% with this_match_remaining=this_match_goal|subtract:this_match_so_far %}
- {% if sitefundgoal.fundraiser_donation_count_disclose_threshold >= 1076 %} - Thanks to 416 Supporters we earned our full match by Private Internet Access! Help us go further to stand up for software + {% if this_match_remaining <= 0 %} + Thanks to {{ this_match_goal|intcomma }} Supporters we earned our full match! Help us go further to stand up for software freedom — sign up now! {% else %} Let's stand up for software freedom together! - The next {{ 1076|subtract:sitefundgoal.fundraiser_donation_count_disclose_threshold|intcomma }} Supporters who join or renew by January 22 (anywhere on earth time) will count twice, - thanks to Private Internet Access! + The next {{ this_match_remaining|intcomma }} Supporters who join or renew by February 13 will be matched by an anonymous donor! {% endif %}
-{% endcomment %} +{% endwith %} +{% endwith %} {% block outercontent %}
{% block content %}{% endblock %}
{% endblock %}