diff options
| author | Thibaud Colas <thibaudcolas@gmail.com> | 2025-04-09 20:07:07 +0100 |
|---|---|---|
| committer | Baptiste Mispelon <bmispelon@gmail.com> | 2025-04-09 22:03:25 +0200 |
| commit | c014ce40748153bbdce524fdd7f62e4c7d120338 (patch) | |
| tree | e563ff4b42c6491f68fd3a804298a6c9450e8229 /fundraising | |
| parent | 2fb3de867173dcdc670e6ff5d209077460c7d502 (diff) | |
Update the fundraising goal amount from 200000 to 300000
This is per the fundraising working group’s discussions. The amount is pretty arbitrary, we just know we want more funding this year, so +100k felt like a reasonable place to aim.
The only place this figure is used is on the [fundraising page](https://www.djangoproject.com/fundraising/), to display the absolute goal amount and % towards completion.
Diffstat (limited to 'fundraising')
| -rw-r--r-- | fundraising/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fundraising/models.py b/fundraising/models.py index 7b50a41e..b67efac5 100644 --- a/fundraising/models.py +++ b/fundraising/models.py @@ -11,7 +11,7 @@ from sorl.thumbnail import ImageField from djangoproject.thumbnails import LogoThumbnailMixin -GOAL_AMOUNT = Decimal("200000.00") +GOAL_AMOUNT = Decimal("300000.00") GOAL_START_DATE = datetime.date(datetime.datetime.today().year, 1, 1) DISPLAY_DONOR_DAYS = 365 DEFAULT_DONATION_AMOUNT = 50 |
