Mercurial > public > sg101
view donations/management/commands/top_donors.py @ 831:0f9c014c8adc
Bandmap: don't need to send URL to javascript client.
Also tweaking note as I am noticing it isn't getting rendered
correctly on all bands for some reason.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 28 Sep 2014 20:42:57 -0500 |
parents | 1ddd72f48d73 |
children |
line wrap: on
line source
"""top_donors.py A management command to display top donor data. """ from optparse import make_option from django.core.management.base import BaseCommand from donations.models import Donation ROW_FMT = '{n:<5} {name:<32} ${amount}\n' class Command(BaseCommand): help = "Display the top N donors and stats" args = "<n>" option_list = BaseCommand.option_list + ( make_option('-n', '--number', action='store', type='int', default=10, help='number of donors to display'), ) def handle(self, *args, **kwargs): """Display the top n donors and their amounts.""" n = kwargs['number'] donors = Donation.objects.top_donors(n) for i, donor in enumerate(donors, start=1): self.stdout.write(ROW_FMT.format(n=i, name=donor.username, amount=donor.total_donations))