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

10 lines
216 B
Python
Raw Normal View History

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