Convert 100.00 to Decimal for operation.

This commit is contained in:
Bradley M. Kuhn 2015-03-08 21:27:13 -07:00
parent 637dd98a68
commit 65142c984a

View file

@ -11,7 +11,7 @@ class FundraisingGoal(models.Model):
return self.fundraiser_code_name
def percentage_there(self):
return (self.fundraiser_so_far_amount / self.fundraiser_goal_amount ) * 100.00
return (self.fundraiser_so_far_amount / self.fundraiser_goal_amount ) * Decimal('100.00')
class Meta:
ordering = ('fundraiser_code_name',)