Files @ ba1df47d695b
Branch filter:

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

Patrick Altman
Remove templates

These have all been moved to the starter project,
pinax-project-symposion. The reasoning behind this is they are very
specific to the theme (pinax-theme-bootstrap) that the project uses and
not really all that reusable when packaged with this app.
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()