Changeset - 985a08545d05
[Not reviewed]
0 2 0
Ben Sturmfels (bsturmfels) - 4 months ago 2024-05-07 00:59:46
ben@sturm.com.au
Fix lint warnings
2 files changed with 4 insertions and 5 deletions:
0 comments (0 inline, 0 general)
TODO.md
Show inline comments
...
 
@@ -9,6 +9,7 @@
 
  complex jQuery - or consider Alpine.js
 
* replace `internalNavigate` with inline flexbox layout
 
* add tests for main pages returning 200
 
* move `sponsors.py` and `sponsors.html` into `supporters` app
 

	
 

	
 
# Done
conservancy/sponsors.py
Show inline comments
 
from datetime import datetime, timedelta
 
from datetime import datetime
 

	
 
from django.shortcuts import render
 

	
...
 
@@ -10,12 +10,10 @@ def view(request):
 

	
 
    Performs object queries necessary to render the sponsors page.
 
    """
 

	
 
    supporters = Supporter.objects.all().filter(display_until_date__gte=datetime.now())
 
    supporters_count = len(supporters)
 
    anonymous_count  = len(supporters.filter(display_name = 'Anonymous'))
 
    supporters = supporters.exclude(display_name = 'Anonymous').order_by('ledger_entity_id')
 

	
 
    anonymous_count  = len(supporters.filter(display_name='Anonymous'))
 
    supporters = supporters.exclude(display_name='Anonymous').order_by('ledger_entity_id')
 
    c = {
 
        'supporters' : supporters,
 
        'supporters_count' : supporters_count,
0 comments (0 inline, 0 general)