view donations/management/commands/top_donors.py @ 887:9a15f7c27526

Actually save model object upon change. This commit was tested on the comments model. Additional logging added. Added check for Markdown image references. Added TODOs after observing behavior on comments.
author Brian Neal <bgneal@gmail.com>
date Tue, 03 Feb 2015 21:09:44 -0600
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))