X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/62d83af2cafb15b3940311cf305a30d489909d95..cda147aa999b09a14dacb097d91638f6b9cca236:/apps/funding/templatetags/funding_tags.py diff --git a/apps/funding/templatetags/funding_tags.py b/apps/funding/templatetags/funding_tags.py index ae3b04f62..bfac2654e 100755 --- a/apps/funding/templatetags/funding_tags.py +++ b/apps/funding/templatetags/funding_tags.py @@ -16,6 +16,7 @@ def funding(context, offer=None, link=False, add_class=""): 'offer': offer, 'sum': offer_sum, 'is_current': offer.is_current(), + 'is_win': offer_sum >= offer.target, 'missing': offer.target - offer_sum, 'percentage': 100 * offer_sum / offer.target, 'link': link, @@ -23,10 +24,16 @@ def funding(context, offer=None, link=False, add_class=""): } -@register.inclusion_tag("funding/tags/offer_detail_head.html") -def offer_detail_head(offer): +@register.inclusion_tag("funding/tags/offer_status.html") +def offer_status(offer): return { 'offer': offer, - 'state': offer.state(), } +@register.inclusion_tag("funding/tags/offer_status_more.html") +def offer_status_more(offer): + return { + 'offer': offer, + } + +