12 lines
		
	
	
	
		
			420 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			420 B
		
	
	
	
		
			Python
		
	
	
	
	
	
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)
 |