comparison contests/models.py @ 869:63209e53f3aa

Merge with upstream.
author Brian Neal <bgneal@gmail.com>
date Mon, 15 Dec 2014 19:51:28 -0600
parents 21946dc3662d
children e14f54f16dbc
comparison
equal deleted inserted replaced
868:64a5acb83937 869:63209e53f3aa
75 winners. 75 winners.
76 76
77 """ 77 """
78 return not self.win_date and self.is_active() 78 return not self.win_date and self.is_active()
79 79
80 def can_comment_on(self):
81 return self.is_active()
82
80 def pick_winners(self): 83 def pick_winners(self):
81 """ 84 """
82 This function randomly picks winners from all the contestants. 85 This function randomly picks winners from all the contestants.
83 86
84 """ 87 """