-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Open
Labels
fundraisinghelp-neededHelp neededHelp neededpythonPull requests that update Python codePull requests that update Python code
Description
In the fundraising page it says "Leadership-level donors contribute $1,000 or more in a calendar year. "
djangoproject.com/djangoproject/templates/fundraising/includes/display_django_heroes.html
Lines 66 to 69 in 5537f96
{% blocktranslate trimmed with amount=display_logo_amount|intcomma %} | |
Leadership-level donors contribute ${{ amount }} or | |
more in a calendar year. | |
{% endblocktranslate %} |
However in the page individual donators see it says this "If you've donated at least US $1000, you can submit your logo and we will display it, too."
djangoproject.com/fundraising/forms.py
Lines 46 to 53 in 5537f96
logo = forms.FileField( | |
required=False, | |
help_text=_( | |
"If you've donated at least US $%d, you can submit your logo and " | |
"we will display it, too." | |
) | |
% LEADERSHIP_LEVEL_AMOUNT, | |
) |
One implies you have to donate 1000$ in a year, the other 1000$ in total over any period of time.
The correct one is the first as far as I've been told, but someone from the board should confirm.
Metadata
Metadata
Assignees
Labels
fundraisinghelp-neededHelp neededHelp neededpythonPull requests that update Python codePull requests that update Python code