Files @ 40339994ee8d
Branch filter:

Location: website/www/conservancy/sponsors.py

bkuhn
Add ODT and PDF of FSA template.

These are the currently in production versions of the FSA. The LaTeX
version is sadly not being maintained by those in charge of drafting
changes now.
from django.shortcuts import render_to_response
from conservancy.apps.supporters.models import Supporter as Supporter
from datetime import datetime, timedelta

def view(request):
    """Conservancy Sponsors Page view

    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')

    c = {
        'supporters' : supporters,
        'supporters_count' : supporters_count,
        'anonymous_count' : anonymous_count
    }
    return render_to_response("sponsors.html", c)