Example #1
0
 def popularity(self):
     if not hasattr(self, "_popularity"):
         candpop, partypop = get_popularity(self.current_eip.election_instance_id)
         self._popularity = int(partypop.get(self.current_eip.pk, 0))
     if self._popularity < 20:
         return 20
     return self._popularity
Example #2
0
 def popularity(self):
     if not hasattr(self, '_popularity'):
         candpop, partypop = get_popularity(self.current_eip.election_instance_id)
         self._popularity = int(partypop.get(self.current_eip.pk, 0))
     if self._popularity < 20:
         return 20
     return self._popularity
Example #3
0
 def popularity(self):
     if not hasattr(self, '_popularity'):
         candidacy_id = self.get_first_candidacy().id
         canpop, partypop = get_popularity(self.election_party().election_instance_id)
         self._popularity = int(canpop.get(candidacy_id, 0))
     if self._popularity < 20:
         return 20
     return self._popularity
Example #4
0
 def popularity(self):
     if not hasattr(self, '_popularity'):
         candidacy_id = self.get_first_candidacy().id
         canpop, partypop = get_popularity(
             self.election_party().election_instance_id)
         self._popularity = int(canpop.get(candidacy_id, 0))
     if self._popularity < 20:
         return 20
     return self._popularity