{% comment %}
FUNDRAISER VARIABLES AND CONSTANTS GUIDE
fundraiser_goal_amount: The highest number of Supporters we want
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 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 %}
{% 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 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 {{ this_match_remaining|intcomma }} Supporters who join or
renew by February 28th will be matched by an anonymous donor! Join today!
{% endif %}