X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/75957f735219259d3b4bc361f80ccd3d7b92a0e9..05b7014d1d710937c6a4b5cdccdb4890f377818d:/src/funding/models.py diff --git a/src/funding/models.py b/src/funding/models.py index 3e20efc7b..b439ebf94 100644 --- a/src/funding/models.py +++ b/src/funding/models.py @@ -194,7 +194,7 @@ class Offer(models.Model): offer_sum = self.sum() return { 'offer': self, - 'sum': offset_sum, + 'sum': offer_sum, 'is_current': self.is_current(), 'is_win': offer_sum >= self.target, 'missing': self.target - offer_sum,