1 from django import template
2 from ..models import Offer
4 register = template.Library()
7 @register.inclusion_tag("funding/tags/funding.html")
8 def funding(offer=None, link=False, add_class=""):
10 offer = Offer.current()
14 'percentage': 100 * offer.sum() / offer.target,
16 'add_class': add_class,