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