Files @ 55814a57b3f0
Branch filter:

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

Hiroshi Miura
admin: inline edit section

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
1
2
3
4
5
6
7
8
9
from django.core.management.base import BaseCommand

from symposion.reviews.models import ProposalResult


class Command(BaseCommand):

    def handle(self, *args, **options):
        ProposalResult.full_calculate()