Changeset - e45322d3c93e
[Not reviewed]
0 4 0
Bradley Kuhn (bkuhn) - 9 years ago 2015-01-03 15:02:02
bkuhn@ebb.org
Place Supporters counter on front & sponsors pages

The number of current supporters now appears on the frontpage and the
sponsors page.
4 files changed with 8 insertions and 2 deletions:
0 comments (0 inline, 0 general)
www/conservancy/frontpage.py
Show inline comments
 
from django.shortcuts import render_to_response
 
from conservancy.apps.supporters.models import Supporter as Supporter
 
from conservancy.apps.news.models import PressRelease
...
 
@@ -11,2 +12,3 @@ def view(request):
 

	
 
    supporters_count = len(Supporter.objects.all().filter(display_until_date__gte=datetime.now()))
 
    press_releases = PressRelease.objects.all().filter(pub_date__lte=datetime.now(), sites=2)[:5]
...
 
@@ -16,2 +18,3 @@ def view(request):
 
        'press_releases': press_releases,
 
        'supporters_count': supporters_count,
 
        'blog' : blog
www/conservancy/sponsors.py
Show inline comments
...
 
@@ -11,2 +11,3 @@ def view(request):
 
    supporters = Supporter.objects.all().filter(display_until_date__gte=datetime.now())
 
    supporters_count = len(supporters)
 
    anonymous_count  = len(supporters.filter(display_name = 'Anonymous'))
...
 
@@ -16,2 +17,3 @@ def view(request):
 
        'supporters' : supporters,
 
        'supporters_count' : supporters_count,
 
        'anonymous_count' : anonymous_count
www/conservancy/templates/frontpage.html
Show inline comments
...
 
@@ -38,3 +38,3 @@
 
  charitable donations for its operations.
 
  Please <a href="/supporter/"><strong>become a Conservancy support
 
  Please join {{supporters_count|safe}} others and <a href="/supporter/"><strong>become a Conservancy support
 
  today</strong></a> and/or <a href="/donate/">donate generously</a> to help our work!
www/conservancy/templates/sponsors.html
Show inline comments
...
 
@@ -53,3 +53,4 @@ any of its sponsors.</p>
 

	
 
<p>Conservancy Supporters are individuals who give $120 or more annually as
 
<p>Conservancy currently has {{supporters_count|safe}} Supporters.
 
  Conservancy Supporters are individuals who give $120 or more annually as
 
  part of <a href="/supporter/">the Official Conservancy Supporter
0 comments (0 inline, 0 general)