-
-
Notifications
You must be signed in to change notification settings - Fork 974
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sort corporate donors by donation amount within each bracket #1867
Comments
I always mess |
I'm having trouble reproducing the issue locally, and I don't have access to production data. @jacobian, could it be that some of the The |
Or that they don't have an |
I dug a little deeper into our Platinum and Gold members. The So what you are seeing for these categories is correct because a few sponsors have paid more. None of the Platinum have paid the same amount. I would argue a few should be moved to Gold, but I can bring that up with the board. We also have at least one that's listed as $0 because they pay monthly through GitHub Sponsors and that doesn't generate an Invoice record for our Side note: I think we'd have to switch the |
I'm looking at the corporate donors on https://www.djangoproject.com/fundraising/. The intent there is that, within each donation bracket, donors are meant to be sorted by donation amount, then alphabetically (e.g. so if a Silver donor donated $7,000, the'd be sorted above one who donated $5,000, even though both are in the Silver bracket).
However, responding to a question from a donor, I think I've discovered two problems:
djangoproject.com/members/models.py
Lines 76 to 93 in d068670
(1) is arguably by design and not a bug, so I'm gonna discuss this with the board and the fundraising team to double check that my understanding of the intent (sort by current donation amount, not total amount) is correct.
But (2) is definitely a bug -- the code clear intends to sort by donation amount, but the sort seems to be lost somewhere somehow.
The text was updated successfully, but these errors were encountered: