9 lines
216 B
Python
9 lines
216 B
Python
from django.core.management.base import BaseCommand
|
|
|
|
from symposion.reviews.models import ProposalResult
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
def handle(self, *args, **options):
|
|
ProposalResult.full_calculate()
|