symposion_app/symposion/reviews/management/commands/calculate_results.py

10 lines
216 B
Python
Raw Normal View History

2012-08-14 07:54:45 +00:00
from django.core.management.base import BaseCommand
from symposion.reviews.models import ProposalResult
class Command(BaseCommand):
2014-07-30 18:19:26 +00:00
2012-08-14 07:54:45 +00:00
def handle(self, *args, **options):
ProposalResult.full_calculate()