Mercurial > public > sg101
view donations/management/commands/top_donors.py @ 827:5103edd3acc4
Bandmap: initial version complete.
Javascript queries server for band data.
View created to handle query.
Test created for view.
Link added to map in sidebar.
Template tweaks.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 27 Sep 2014 19:41:41 -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))