Files @ 55814a57b3f0
Branch filter:

Location: symposion_app/symposion/reviews/management/commands/assign_reviewers.py

Hiroshi Miura
admin: inline edit section

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
from django.core.management.base import BaseCommand

from symposion.reviews.models import ReviewAssignment
from symposion.proposals.models import ProposalBase


class Command(BaseCommand):

    def handle(self, *args, **options):
        for proposal in ProposalBase.objects.filter(cancelled=0):
            print "Creating assignments for %s" % (proposal.title,)
            ReviewAssignment.create_assignments(proposal)